diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2018-11-01 11:51:49 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-11-01 11:51:49 +0900 |
| commit | c21caad1c505dda039817844681327b24e8a4e8f (patch) | |
| tree | eb99d74449371931679d29de3190911afd73891a /src/models | |
| parent | Fix bug (diff) | |
| download | sharkey-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.ts | 20 |
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; + }[]; }; |