Custom emoji (#3061)

* wip

* wip

* wip
This commit is contained in:
syuilo
2018-11-01 11:51:49 +09:00
committed by GitHub
parent 86fcd3a378
commit c21caad1c5
7 changed files with 91 additions and 8 deletions

View File

@ -15,4 +15,24 @@ export type IMeta = {
disableLocalTimeline?: boolean;
hidedTags?: string[];
bannerUrl?: string;
/**
* カスタム絵文字定義
*/
emojis?: {
/**
* 絵文字名 (例: thinking_ai)
*/
name: string;
/**
* エイリアス
*/
aliases?: string[];
/**
* 絵文字画像のURL
*/
url: string;
}[];
};