feat(frontend): 絵文字ピッカーのカテゴリを多階層フォルダで分類できるように (misskey-dev#12132) (MisskeyIO#196)

Co-authored-by: meronmks <meronmks.8914@gmail.com>
Co-authored-by: mattyatea <mattyacocacora0@gmail.com>
This commit is contained in:
まっちゃとーにゅ
2023-10-30 00:54:38 +09:00
committed by GitHub
parent 5bcf8e9b9d
commit 08c5e1616e
6 changed files with 96 additions and 9 deletions

View File

@@ -43,3 +43,9 @@ export function getEmojiName(char: string): string | null {
return emojilist[idx].name;
}
}
export interface CustomEmojiFolderTree {
value: string;
category: string;
children: CustomEmojiFolderTree[];
}