Interface QuickPickItemButtonEvent<T>

An event signaling when a button in a particular QuickPickItem was triggered. This event does not fire for buttons in the title bar.

interface QuickPickItemButtonEvent<T> {
    button: QuickInputButton;
    item: T;
}

Type Parameters

Properties

Properties

The button that was clicked.

item: T

The item that the button belongs to.