1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-08 21:42:24 +03:00

Make emoji skins type more specific

Signed-off-by: Robin Townsend <robin@robin.town>
This commit is contained in:
Robin Townsend
2021-07-19 21:57:03 -04:00
parent 5614ef1675
commit e9963cd22c

View File

@@ -25,7 +25,7 @@ export interface IEmoji {
shortcodes: string[];
tags?: string[];
unicode: string;
skins?: any[]; // Currently unused
skins?: Omit<IEmoji, "shortcodes">[]; // Currently unused
emoticon?: string;
}