@mbakgun/n8n-nodes-slack-socket-mode
Version:
Slack Socket Mode Node for n8n that allows you to use +100 Slack events in your n8n instance with proxy mode
8 lines • 509 B
TypeScript
import type { WebClient } from '@slack/web-api';
import type { Context } from '../types';
type ChatStreamParams = Parameters<WebClient['chatStream']>[0];
export type SayStreamArguments = Partial<Omit<ChatStreamParams, 'token'>>;
export type SayStreamFn = (args?: SayStreamArguments) => ReturnType<WebClient['chatStream']>;
export declare function createSayStream(client: WebClient, context: Context, channelId: string, threadTs: string): SayStreamFn;
export {};
//# sourceMappingURL=create-say-stream.d.ts.map