1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-02 16:45:54 +02:00

外部サービス認証情報の配信 (#3975)

* Update person.ts

* Update person.ts

* Update person.ts

* Update person.ts

* Create original model

* Make type formal

* Update person.ts

* Follow @mei23's review

refs: https://github.com/syuilo/misskey/pull/3975#pullrequestreview-195770172
This commit is contained in:
Acid Chicken (硫酸鶏)
2019-01-24 17:33:39 +09:00
committed by syuilo
parent 4632eecb76
commit e2f7e82cac
4 changed files with 88 additions and 20 deletions

View File

@@ -0,0 +1,5 @@
export type IIdentifier = {
type: string;
name: string;
value: string;
};