Skip to main content
Module

x/slack_bolt/mod.ts>ConversationStore

TypeScript framework to build Slack apps in a flash with the latest platform features. Deno port of @slack/bolt
Latest
interface ConversationStore
import { type ConversationStore } from "https://deno.land/x/slack_bolt@1.0.0/mod.ts";

Storage backend used by the conversation context middleware

Type Parameters

optional
ConversationState = any

Methods

set(
conversationId: string,
expiresAt?: number,
): Promise<unknown>
get(conversationId: string): Promise<ConversationState>