@cavell/kit API
    Preparing search index...

    Interface ToolCallAction

    A host-supplied action button on a completed tool card (a user-triggered tool callback — ADR 0006 D6, e.g. "Send to EHR"). Buttons disable while a returned promise is pending.

    interface ToolCallAction {
        label: string;
        run: () => void | Promise<void>;
    }
    Index
    label: string
    run: () => void | Promise<void>