Interface BaseTransferQuickInput

interface BaseTransferQuickInput {
    busy?: boolean;
    enabled?: boolean;
    id: number;
    type?: "quickPick" | "inputBox";
    visible?: boolean;
    [key: string]: any;
}

Hierarchy (view full)

Indexable

[key: string]: any

Properties

busy?: boolean
enabled?: boolean
id: number
type?: "quickPick" | "inputBox"
visible?: boolean