@slack/web-api
Version:
Official library for using the Slack Platform's Web API
15 lines • 420 B
TypeScript
import type { WebAPICallResult } from '../../WebClient';
export type ChatUnfurlResponse = WebAPICallResult & {
callstack?: string;
error?: string;
needed?: string;
ok?: boolean;
provided?: string;
response_metadata?: ResponseMetadata;
warning?: string;
};
export interface ResponseMetadata {
messages?: string[];
warnings?: string[];
}
//# sourceMappingURL=ChatUnfurlResponse.d.ts.map