From c21caad1c505dda039817844681327b24e8a4e8f Mon Sep 17 00:00:00 2001 From: syuilo Date: Thu, 1 Nov 2018 11:51:49 +0900 Subject: Custom emoji (#3061) * wip * wip * wip --- src/models/meta.ts | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) (limited to 'src/models') 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; + }[]; }; -- cgit v1.2.3-freya