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

10 lines 517 B
import type { InstallURLOptions } from '../install-url-options'; import type { StateStore } from './interface'; export default class ClearStateStore implements StateStore { private stateSecret; private stateExpirationSeconds; constructor(stateSecret: string, stateExpirationSeconds?: number); generateStateParam(installOptions: InstallURLOptions, now: Date): Promise<string>; verifyStateParam(now: Date, state: string): Promise<InstallURLOptions>; } //# sourceMappingURL=clear-state-store.d.ts.map