Interface TransferInputBox

interface TransferInputBox {
    busy?: boolean;
    buttons?: TransferQuickInputButton[];
    enabled?: boolean;
    id: number;
    password?: boolean;
    placeholder?: string;
    prompt?: string;
    type?: "inputBox";
    validationMessage?: string;
    value?: string;
    visible?: boolean;
}

Hierarchy (view full)

Properties

busy?: boolean
enabled?: boolean
id: number
password?: boolean
placeholder?: string
prompt?: string
type?: "inputBox"
validationMessage?: string
value?: string
visible?: boolean