eve
Version:
Filesystem-first framework for durable backend AI agents that run anywhere.
11 lines (10 loc) • 538 B
TypeScript
import type { InteractionHandlerDeps, ParsedBlockActionsPayload } from "#public/channels/slack/interactions.js";
export declare function updateAnsweredHitlCard(interaction: ParsedBlockActionsPayload, deps: InteractionHandlerDeps): Promise<void>;
export declare function updateAnsweredFreeformCard(input: {
readonly channelId: string;
readonly messageTs: string;
readonly answerLabel: string;
readonly userId?: string;
readonly installationTeamId?: string;
readonly deps: InteractionHandlerDeps;
}): Promise<void>;