summaryrefslogtreecommitdiff
path: root/src/models
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2018-11-01 11:51:49 +0900
committerGitHub <noreply@github.com>2018-11-01 11:51:49 +0900
commitc21caad1c505dda039817844681327b24e8a4e8f (patch)
treeeb99d74449371931679d29de3190911afd73891a /src/models
parentFix bug (diff)
downloadsharkey-c21caad1c505dda039817844681327b24e8a4e8f.tar.gz
sharkey-c21caad1c505dda039817844681327b24e8a4e8f.tar.bz2
sharkey-c21caad1c505dda039817844681327b24e8a4e8f.zip
Custom emoji (#3061)
* wip * wip * wip
Diffstat (limited to 'src/models')
-rw-r--r--src/models/meta.ts20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/models/meta.ts b/src/models/meta.ts
index 3c0347485c..7ecb4990d4 100644
--- a/src/models/meta.ts
+++ b/src/models/meta.ts
@@ -15,4 +15,24 @@ export type IMeta = {
disableLocalTimeline?: boolean;
hidedTags?: string[];
bannerUrl?: string;
+
+ /**
+ * カスタム絵文字定義
+ */
+ emojis?: {
+ /**
+ * 絵文字名 (例: thinking_ai)
+ */
+ name: string;
+
+ /**
+ * エイリアス
+ */
+ aliases?: string[];
+
+ /**
+ * 絵文字画像のURL
+ */
+ url: string;
+ }[];
};