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

    Interface NotifyOptions<T>

    Options for NotificationService.info/warn/error.

    T is inferred from actions — omit it entirely for a plain notification with no buttons, whose result is always undefined.

    interface NotifyOptions<T = never> {
        actions?: readonly NotifyAction<T>[];
        detail?: string;
        modal?: boolean;
    }

    Type Parameters

    • T = never
    Index
    actions?: readonly NotifyAction<T>[]

    Action buttons. Omit for a plain notification.

    detail?: string

    Human-readable detail text. Only rendered when modal: true — VS Code silently ignores it otherwise.

    modal?: boolean

    Show as a modal dialog instead of a toast notification.