Interface RenderDangerousConfirmationPromptOptions

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

Hierarchy

  • Omit<DangerousConfirmationPromptProps, "onSubmit">
    • RenderDangerousConfirmationPromptOptions

Properties

abortSignal?: AbortSignal
confirmation: string
infoTable?: Record<string, Items> | InfoTableSection[]
message: string
renderOptions?: RenderOptions