mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-08 17:19:48 +01:00
Mark fields readonly
This commit is contained in:
@@ -2,18 +2,16 @@
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
'use strict';
|
||||
|
||||
import URI from 'vs/base/common/uri';
|
||||
import { ResourceEditorInput } from 'vs/workbench/common/editor/resourceEditorInput';
|
||||
import { ITextModelService } from 'vs/editor/common/services/resolverService';
|
||||
import { IHashService } from 'vs/workbench/services/hash/common/hashService';
|
||||
|
||||
|
||||
export interface HtmlInputOptions {
|
||||
allowScripts?: boolean;
|
||||
allowSvgs?: boolean;
|
||||
svgWhiteList?: string[];
|
||||
readonly allowScripts?: boolean;
|
||||
readonly allowSvgs?: boolean;
|
||||
readonly svgWhiteList?: string[];
|
||||
}
|
||||
|
||||
export function areHtmlInputOptionsEqual(left: HtmlInputOptions, right: HtmlInputOptions) {
|
||||
|
||||
Reference in New Issue
Block a user