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

    Interface WebviewPanelRequest

    What to open a webview panel with.

    interface WebviewPanelRequest {
        column?: number;
        enableFindWidget?: boolean;
        enableForms?: boolean;
        enableScripts?: boolean;
        localResourceRoots?: readonly string[];
        retainContextWhenHidden?: boolean;
        title: string;
        viewType: string;
    }
    Index
    column?: number

    Editor column to open in.

    enableFindWidget?: boolean

    Whether the find widget is available.

    enableForms?: boolean

    Whether the content may submit forms.

    enableScripts?: boolean

    Whether the content may run scripts.

    localResourceRoots?: readonly string[]

    Extension-relative folders the content may load resources from.

    retainContextWhenHidden?: boolean

    Keeps the hidden panel's scripts running instead of tearing the iframe down. It has a real memory cost; saving state from inside the content is usually better.

    title: string

    The tab's title.

    viewType: string

    Identifies the kind of panel, matching a serializer contribution.