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[]

Type declaration

  • [header: string]: Items
message: string
renderOptions?: RenderOptions