UNPKG

eve

Version:

Filesystem-first framework for durable backend AI agents that run anywhere.

12 lines (11 loc) 551 B
import type { SlackHandle } from "#public/channels/slack/api.js"; import type { SlackPendingApprovalCard } from "#public/channels/slack/slackChannel.js"; import type { InputRequest } from "#shared/input.js"; type PrivateApprovalSlack = Pick<SlackHandle, "channelId" | "request" | "threadTs">; export declare function deliverPrivateInputRequest(input: { readonly previewMessageTs: string; readonly request: InputRequest; readonly reviewer: string; readonly slack: PrivateApprovalSlack; }): Promise<SlackPendingApprovalCard>; export {};