slack-web-api-client
Version:
Streamlined Slack Web API client for TypeScript
18 lines • 451 B
TypeScript
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