Interface RenderDangerousConfirmationPromptOptions

interface RenderDangerousConfirmationPromptOptions {
    abortSignal?: AbortSignal;
    confirmation: string;
    infoTable?: { [header: string]: Items } | InfoTableSection[];
    message: string;
    renderOptions?: RenderOptions;
}

Hierarchy

  • Omit<DangerousConfirmationPromptProps, "onSubmit">
    • RenderDangerousConfirmationPromptOptions

Properties

abortSignal?: AbortSignal
confirmation: string
infoTable?: { [header: string]: Items } | InfoTableSection[]
message: string
renderOptions?: RenderOptions