Interface JAppConfirmMessage

interface JAppConfirmMessage {
    cancelButtonLabel?: string;
    confirmButtonLabel?: string;
    inputPlaceholder?: string;
    isInputMessage?: boolean;
    isInputOptional?: boolean;
    locale?: JLOCALES;
    message: string;
    onCancel?: (() => any);
    onSuccess: ((input) => any);
    title: string;
}

Properties

cancelButtonLabel?: string
confirmButtonLabel?: string
inputPlaceholder?: string
isInputMessage?: boolean
isInputOptional?: boolean
locale?: JLOCALES
message: string
onCancel?: (() => any)

Type declaration

    • (): any
    • Returns any

onSuccess: ((input) => any)

Type declaration

    • (input): any
    • Parameters

      • input: string

      Returns any

title: string