Member Junction
    Preparing search index...
    interface InputDialogOptions {
        cancelText?: string;
        inputLabel: string;
        inputType?: "number" | "textarea" | "text" | "email";
        inputValue?: string;
        message: string;
        okText?: string;
        placeholder?: string;
        required?: boolean;
        secondInputLabel?: string;
        secondInputPlaceholder?: string;
        secondInputRequired?: boolean;
        secondInputValue?: string;
        title: string;
    }
    Index

    Properties

    cancelText?: string
    inputLabel: string
    inputType?: "number" | "textarea" | "text" | "email"
    inputValue?: string
    message: string
    okText?: string
    placeholder?: string
    required?: boolean
    secondInputLabel?: string
    secondInputPlaceholder?: string
    secondInputRequired?: boolean
    secondInputValue?: string
    title: string