mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 18:46:40 -05:00
Merge from vscode 2c306f762bf9c3db82dc06c7afaa56ef46d72f79 (#14050)
* Merge from vscode 2c306f762bf9c3db82dc06c7afaa56ef46d72f79 * Fix breaks * Extension management fixes * Fix breaks in windows bundling * Fix/skip failing tests * Update distro * Add clear to nuget.config * Add hygiene task * Bump distro * Fix hygiene issue * Add build to hygiene exclusion * Update distro * Update hygiene * Hygiene exclusions * Update tsconfig * Bump distro for server breaks * Update build config * Update darwin path * Add done calls to notebook tests * Skip failing tests * Disable smoke tests
This commit is contained in:
@@ -1,16 +0,0 @@
|
||||
{
|
||||
"registrations": [
|
||||
{
|
||||
"component": {
|
||||
"type": "git",
|
||||
"git": {
|
||||
"name": "definitelytyped",
|
||||
"repositoryUrl": "https://github.com/DefinitelyTyped/DefinitelyTyped",
|
||||
"commitHash": "69e3ac6bec3008271f76bbfa7cf69aa9198c4ff0"
|
||||
}
|
||||
},
|
||||
"license": "MIT"
|
||||
}
|
||||
],
|
||||
"version": 1
|
||||
}
|
||||
36
src/typings/trustedTypes.d.ts
vendored
36
src/typings/trustedTypes.d.ts
vendored
@@ -1,36 +0,0 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
|
||||
// see https://w3c.github.io/webappsec-trusted-types/dist/spec/
|
||||
// this isn't complete nor 100% correct
|
||||
|
||||
type TrustedHTML = string & object;
|
||||
type TrustedScript = string;
|
||||
type TrustedScriptURL = string;
|
||||
|
||||
interface TrustedTypePolicyOptions {
|
||||
createHTML?: (value: string) => string
|
||||
createScript?: (value: string) => string
|
||||
createScriptURL?: (value: string) => string
|
||||
}
|
||||
|
||||
interface TrustedTypePolicy {
|
||||
readonly name: string;
|
||||
createHTML(input: string, ...more: any[]): TrustedHTML
|
||||
createScript(input: string, ...more: any[]): TrustedScript
|
||||
createScriptURL(input: string, ...more: any[]): TrustedScriptURL
|
||||
}
|
||||
|
||||
interface TrustedTypePolicyFactory {
|
||||
createPolicy(policyName: string, object: TrustedTypePolicyOptions): TrustedTypePolicy;
|
||||
}
|
||||
|
||||
interface Window {
|
||||
trustedTypes: TrustedTypePolicyFactory | undefined;
|
||||
}
|
||||
|
||||
interface WorkerGlobalScope {
|
||||
trustedTypes: TrustedTypePolicyFactory | undefined;
|
||||
}
|
||||
Reference in New Issue
Block a user