Datalayer VS Code Extension - v0.0.17
    Preparing search index...

    Describes an action that can be presented to the user in an error notification.

    interface ErrorAction {
        action: () => void | Promise<void>;
        title: string;
    }
    Index

    Properties

    Properties

    action: () => void | Promise<void>

    Callback invoked when the user selects this action.

    title: string

    Display title for the action button.