UNPKG

451 BTypeScriptView Raw
1import { WebAPICallResult } from '../../WebClient';
2export type EmojiListResponse = WebAPICallResult & {
3 cache_ts?: string;
4 categories?: Category[];
5 categories_version?: string;
6 emoji?: {
7 [key: string]: string;
8 };
9 error?: string;
10 needed?: string;
11 ok?: boolean;
12 provided?: string;
13};
14export interface Category {
15 emoji_names?: string[];
16 name?: string;
17}
18//# sourceMappingURL=EmojiListResponse.d.ts.map
\No newline at end of file