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

8 lines 540 B
import type { Logger } from '@slack/logger'; import type { Installation, InstallationQuery } from '..'; export interface InstallationStore { storeInstallation<AuthVersion extends 'v1' | 'v2'>(installation: Installation<AuthVersion, boolean>, logger?: Logger): Promise<void>; fetchInstallation: (query: InstallationQuery<boolean>, logger?: Logger) => Promise<Installation<'v1' | 'v2', boolean>>; deleteInstallation?: (query: InstallationQuery<boolean>, logger?: Logger) => Promise<void>; } //# sourceMappingURL=interface.d.ts.map