slack-web-api-client
Version:
Streamlined Slack Web API client for TypeScript
15 lines • 436 B
TypeScript
import type { SlackAPIResponse } from "../response";
export type SlackListsDownloadGetResponse = SlackAPIResponse & {
download_url?: string;
error?: string;
needed?: string;
ok: boolean;
provided?: string;
response_metadata?: ResponseMetadata;
status?: string;
warning?: string;
};
export interface ResponseMetadata {
messages?: string[];
}
//# sourceMappingURL=SlackListsDownloadGetResponse.d.ts.map