From e2f7e82cac65938b6d494aceb5c1c1fc3fbe865e Mon Sep 17 00:00:00 2001 From: "Acid Chicken (硫酸鶏)" Date: Thu, 24 Jan 2019 17:33:39 +0900 Subject: 外部サービス認証情報の配信 (#3975) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * 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 --- src/remote/activitypub/models/identifier.ts | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 src/remote/activitypub/models/identifier.ts (limited to 'src/remote/activitypub/models/identifier.ts') diff --git a/src/remote/activitypub/models/identifier.ts b/src/remote/activitypub/models/identifier.ts new file mode 100644 index 0000000000..f6c3bb8c88 --- /dev/null +++ b/src/remote/activitypub/models/identifier.ts @@ -0,0 +1,5 @@ +export type IIdentifier = { + type: string; + name: string; + value: string; +}; -- cgit v1.2.3-freya