@kkdev92/vscode-ext-kit - v4.1.1
    Preparing search index...

    Interface NotifyAction<T>

    An action button for NotificationService.info and friends. title is what the user sees; value is what the caller gets back — keeping the two separate means a localized/dynamic label never has to double as the code's branching key.

    interface NotifyAction<T> {
        isCloseAffordance?: boolean;
        title: string;
        value: T;
    }

    Type Parameters

    • T
    Index
    isCloseAffordance?: boolean

    Whether this action is used when the user dismisses the dialog (e.g. Escape) on a modal.

    title: string

    Button label shown to the user.

    value: T

    Value returned to the caller when this button is clicked.