You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
export function createWebviewPanel(viewType: string, title: string, showOptions: ViewColumn | {
/**
* The view column in which the {@link WebviewPanel} should be shown.
*/
readonly viewColumn: ViewColumn;
/**
* An optional flag that when `true` will stop the panel from taking focus.
*/
readonly preserveFocus?: boolean;
}, options?: WebviewPanelOptions & WebviewOptions): WebviewPanel;
Records aren't updatable so we can't use it freely with sum types, however, when the sum type is being used as an input like WebviewPanelOptions & WebviewOptions above, we may be able to generate a Record to be used instead of Object
The text was updated successfully, but these errors were encountered:
VSCode extension API has this function:
Records aren't updatable so we can't use it freely with sum types, however, when the sum type is being used as an input like
WebviewPanelOptions & WebviewOptions
above, we may be able to generate aRecord
to be used instead ofObject
The text was updated successfully, but these errors were encountered: