summaryrefslogtreecommitdiff
path: root/src/remote/activitypub/models/identifier.ts
diff options
context:
space:
mode:
authorAcid Chicken (硫酸鶏) <root@acid-chicken.com>2019-01-24 17:33:39 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2019-01-24 17:33:39 +0900
commite2f7e82cac65938b6d494aceb5c1c1fc3fbe865e (patch)
tree2cee13e18daea375e463fda2ae950f1a48b3a4b9 /src/remote/activitypub/models/identifier.ts
parentBack to the #3813 (#3949) (diff)
downloadmisskey-e2f7e82cac65938b6d494aceb5c1c1fc3fbe865e.tar.gz
misskey-e2f7e82cac65938b6d494aceb5c1c1fc3fbe865e.tar.bz2
misskey-e2f7e82cac65938b6d494aceb5c1c1fc3fbe865e.zip
外部サービス認証情報の配信 (#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
Diffstat (limited to 'src/remote/activitypub/models/identifier.ts')
-rw-r--r--src/remote/activitypub/models/identifier.ts5
1 files changed, 5 insertions, 0 deletions
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;
+};