UNPKG

@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

18 lines 792 B
import { type AllAssistantMiddlewareArgs } from './Assistant'; export interface AssistantThreadContextStore { get: GetThreadContextFn; save: SaveThreadContextFn; } export type GetThreadContextFn = (args: AllAssistantMiddlewareArgs) => Promise<AssistantThreadContext>; export type SaveThreadContextFn = (args: AllAssistantMiddlewareArgs) => Promise<void>; export interface AssistantThreadContext { channel_id?: string; team_id?: string; enterprise_id?: string | null; } export declare class DefaultThreadContextStore implements AssistantThreadContextStore { private context; get(args: AllAssistantMiddlewareArgs): Promise<AssistantThreadContext>; save(args: AllAssistantMiddlewareArgs): Promise<void>; } //# sourceMappingURL=AssistantThreadContextStore.d.ts.map