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

    Options for error handling behavior.

    interface ErrorHandlerOptions {
        actionable?: { action: () => void | Promise<void>; title: string }[];
        context?: Record<string, unknown>;
        logError?: boolean;
        severity?: "error" | "warning" | "info";
        showUser?: boolean;
    }
    Index

    Properties

    actionable?: { action: () => void | Promise<void>; title: string }[]

    Actionable items to present to user

    context?: Record<string, unknown>

    Additional context for debugging

    logError?: boolean

    Whether to log the error

    severity?: "error" | "warning" | "info"

    Severity level for user notifications

    showUser?: boolean

    Whether to show error to user