UNPKG

slack-web-api-client

Version:
18 lines 451 B
import type { SlackAPIResponse } from "../response"; export type EmojiListResponse = SlackAPIResponse & { cache_ts?: string; categories?: Category[]; categories_version?: string; emoji?: { [key: string]: string; }; error?: string; needed?: string; ok: boolean; provided?: string; }; export interface Category { emoji_names?: string[]; name?: string; } //# sourceMappingURL=EmojiListResponse.d.ts.map