Skip to content

Commit e61b35f

Browse files
committed
chore: update baselines
1 parent 21c1c0e commit e61b35f

File tree

2 files changed

+63
-1
lines changed

2 files changed

+63
-1
lines changed

baselines/dom.generated.d.ts

Lines changed: 27 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3616,6 +3616,10 @@ interface ConcatParams extends Algorithm {
36163616
publicInfo?: Uint8Array;
36173617
}
36183618

3619+
interface ConfirmSiteSpecificExceptionsInformation extends ExceptionInformation {
3620+
arrayOfDomainStrings?: string[];
3621+
}
3622+
36193623
/** Provides access to the browser's debugging console (e.g. the Web Console in Firefox). The specifics of how it works varies from browser to browser, but there is a de facto set of features that are typically provided. */
36203624
interface Console {
36213625
memory: any;
@@ -5462,6 +5466,10 @@ declare var EventTarget: {
54625466
new(): EventTarget;
54635467
};
54645468

5469+
interface ExceptionInformation {
5470+
domain?: string | null;
5471+
}
5472+
54655473
interface ExtensionScriptApis {
54665474
extensionIdToShortId(extensionId: string): number;
54675475
fireExtensionApiTelemetry(functionName: string, isSucceeded: boolean, isSupported: boolean, errorString: string): void;
@@ -10052,6 +10060,10 @@ declare var MSInputMethodContext: {
1005210060
new(): MSInputMethodContext;
1005310061
};
1005410062

10063+
interface MSLaunchUriCallback {
10064+
(): void;
10065+
}
10066+
1005510067
interface MSMediaKeyError {
1005610068
readonly code: number;
1005710069
readonly systemCode: number;
@@ -10799,18 +10811,22 @@ declare var NavigationPreloadManager: {
1079910811
};
1080010812

1080110813
/** The state and the identity of the user agent. It allows scripts to query it and to register themselves to carry on some activities. */
10802-
interface Navigator extends MSFileSaver, MSNavigatorDoNotTrack, NavigatorStorage, NavigatorAutomationInformation, NavigatorID, NavigatorLanguage, NavigatorOnLine, NavigatorContentUtils, NavigatorCookies, NavigatorPlugins, NavigatorConcurrentHardware {
10814+
interface Navigator extends NavigatorID, NavigatorLanguage, NavigatorOnLine, NavigatorContentUtils, NavigatorCookies, NavigatorPlugins, NavigatorConcurrentHardware, NavigatorStorage, NavigatorAutomationInformation, MSFileSaver, MSNavigatorDoNotTrack {
1080310815
readonly clipboard: Clipboard;
1080410816
readonly credentials: CredentialsContainer;
1080510817
readonly doNotTrack: string | null;
1080610818
readonly geolocation: Geolocation;
1080710819
readonly maxTouchPoints: number;
1080810820
readonly mediaDevices: MediaDevices;
10821+
readonly msManipulationViewsEnabled: boolean;
10822+
readonly msMaxTouchPoints: number;
10823+
readonly msPointerEnabled: boolean;
1080910824
readonly permissions: Permissions;
1081010825
readonly pointerEnabled: boolean;
1081110826
readonly serviceWorker: ServiceWorkerContainer;
1081210827
getGamepads(): (Gamepad | null)[];
1081310828
getUserMedia(constraints: MediaStreamConstraints, successCallback: NavigatorUserMediaSuccessCallback, errorCallback: NavigatorUserMediaErrorCallback): void;
10829+
msLaunchUri(uri: string, successCallback?: MSLaunchUriCallback, noHandlerCallback?: MSLaunchUriCallback): void;
1081410830
requestMediaKeySystemAccess(keySystem: string, supportedConfigurations: MediaKeySystemConfiguration[]): Promise<MediaKeySystemAccess>;
1081510831
vibrate(pattern: number | number[]): boolean;
1081610832
}
@@ -15464,6 +15480,16 @@ declare var StorageManager: {
1546415480
new(): StorageManager;
1546515481
};
1546615482

15483+
interface StoreExceptionsInformation extends ExceptionInformation {
15484+
detailURI?: string | null;
15485+
explanationString?: string | null;
15486+
siteName?: string | null;
15487+
}
15488+
15489+
interface StoreSiteSpecificExceptionsInformation extends StoreExceptionsInformation {
15490+
arrayOfDomainStrings?: string[];
15491+
}
15492+
1546715493
interface StyleMedia {
1546815494
readonly type: string;
1546915495
matchMedium(mediaquery: string): boolean;

baselines/webworker.generated.d.ts

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -904,6 +904,10 @@ interface ConcatParams extends Algorithm {
904904
publicInfo?: Uint8Array;
905905
}
906906

907+
interface ConfirmSiteSpecificExceptionsInformation extends ExceptionInformation {
908+
arrayOfDomainStrings?: string[];
909+
}
910+
907911
/** Provides access to the browser's debugging console (e.g. the Web Console in Firefox). The specifics of how it works varies from browser to browser, but there is a de facto set of features that are typically provided. */
908912
interface Console {
909913
memory: any;
@@ -1477,6 +1481,10 @@ declare var EventTarget: {
14771481
new(): EventTarget;
14781482
};
14791483

1484+
interface ExceptionInformation {
1485+
domain?: string | null;
1486+
}
1487+
14801488
/** Extends the lifetime of the install and activate events dispatched on the global scope as part of the service worker lifecycle. This ensures that any functional events (like FetchEvent) are not dispatched until it upgrades database schemas and deletes the outdated cache entries. */
14811489
interface ExtendableEvent extends Event {
14821490
waitUntil(f: any): void;
@@ -2205,6 +2213,24 @@ declare var ImageData: {
22052213
new(array: Uint8ClampedArray, width: number, height: number): ImageData;
22062214
};
22072215

2216+
interface MSFileSaver {
2217+
msSaveBlob(blob: any, defaultName?: string): boolean;
2218+
msSaveOrOpenBlob(blob: any, defaultName?: string): boolean;
2219+
}
2220+
2221+
interface MSLaunchUriCallback {
2222+
(): void;
2223+
}
2224+
2225+
interface MSNavigatorDoNotTrack {
2226+
confirmSiteSpecificTrackingException(args: ConfirmSiteSpecificExceptionsInformation): boolean;
2227+
confirmWebWideTrackingException(args: ExceptionInformation): boolean;
2228+
removeSiteSpecificTrackingException(args: ExceptionInformation): void;
2229+
removeWebWideTrackingException(args: ExceptionInformation): void;
2230+
storeSiteSpecificTrackingException(args: StoreSiteSpecificExceptionsInformation): void;
2231+
storeWebWideTrackingException(args: StoreExceptionsInformation): void;
2232+
}
2233+
22082234
/** This Channel Messaging API interface allows us to create a new message channel and send data through it via its two MessagePort properties. */
22092235
interface MessageChannel {
22102236
/**
@@ -2995,6 +3021,16 @@ declare var StorageManager: {
29953021
new(): StorageManager;
29963022
};
29973023

3024+
interface StoreExceptionsInformation extends ExceptionInformation {
3025+
detailURI?: string | null;
3026+
explanationString?: string | null;
3027+
siteName?: string | null;
3028+
}
3029+
3030+
interface StoreSiteSpecificExceptionsInformation extends StoreExceptionsInformation {
3031+
arrayOfDomainStrings?: string[];
3032+
}
3033+
29983034
/** This Web Crypto API interface provides a number of low-level cryptographic functions. It is accessed via the Crypto.subtle properties available in a window context (via Window.crypto). */
29993035
interface SubtleCrypto {
30003036
decrypt(algorithm: string | RsaOaepParams | AesCtrParams | AesCbcParams | AesCmacParams | AesGcmParams | AesCfbParams, key: CryptoKey, data: Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | ArrayBuffer): PromiseLike<ArrayBuffer>;

0 commit comments

Comments
 (0)