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

    Interface RuntimeSelectorOptions

    Options for runtime selection dialog.

    interface RuntimeSelectorOptions {
        hideExistingRuntimes?: boolean;
        onRuntimeSelected?: (runtime: RuntimeDTO) => void | Promise<void>;
    }
    Index

    Properties

    hideExistingRuntimes?: boolean

    If true, hides existing runtimes and only shows create options. Useful when called from the Runtimes tree view where the user explicitly wants to create a NEW runtime. Default: false (show existing runtimes)

    onRuntimeSelected?: (runtime: RuntimeDTO) => void | Promise<void>

    Callback called IMMEDIATELY when user selects a runtime (before QuickPick closes). Used to trigger instant visual feedback like showing a spinner.