UNPKG

@slack/web-api

Version:

Official library for using the Slack Platform's Web API

15 lines 403 B
interface ChannelAndTS { channel: string; ts: string; } interface SourceAndUnfurlID { source: 'composer' | 'conversations_history'; unfurl_id: string; } type UnfurlArguments = (ChannelAndTS | SourceAndUnfurlID) & { unfurls: string[]; whatever?: string; }; declare const _channelArgs: UnfurlArguments; declare const _sourceArgs: UnfurlArguments; //# sourceMappingURL=test.d.ts.map