Skip to content

Commit 9189f78

Browse files
committed
refactor(baseline): add removed ms-interfaces
1 parent 479c74c commit 9189f78

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

baselines/dom.generated.d.ts

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9960,6 +9960,11 @@ declare var MSFIDOSignatureAssertion: {
99609960
new(): MSFIDOSignatureAssertion;
99619961
};
99629962

9963+
interface MSFileSaver {
9964+
msSaveBlob(blob: any, defaultName?: string): boolean;
9965+
msSaveOrOpenBlob(blob: any, defaultName?: string): boolean;
9966+
}
9967+
99639968
interface MSGesture {
99649969
target: Element;
99659970
addPointer(pointerId: number): void;
@@ -10113,6 +10118,15 @@ declare var MSMediaKeys: {
1011310118
isTypeSupportedWithFeatures(keySystem: string, type?: string | null): string;
1011410119
};
1011510120

10121+
interface MSNavigatorDoNotTrack {
10122+
confirmSiteSpecificTrackingException(args: ConfirmSiteSpecificExceptionsInformation): boolean;
10123+
confirmWebWideTrackingException(args: ExceptionInformation): boolean;
10124+
removeSiteSpecificTrackingException(args: ExceptionInformation): void;
10125+
removeWebWideTrackingException(args: ExceptionInformation): void;
10126+
storeSiteSpecificTrackingException(args: StoreSiteSpecificExceptionsInformation): void;
10127+
storeWebWideTrackingException(args: StoreExceptionsInformation): void;
10128+
}
10129+
1011610130
interface MSPointerEvent extends MouseEvent {
1011710131
readonly currentPoint: any;
1011810132
readonly height: number;
@@ -10785,7 +10799,7 @@ declare var NavigationPreloadManager: {
1078510799
};
1078610800

1078710801
/** The state and the identity of the user agent. It allows scripts to query it and to register themselves to carry on some activities. */
10788-
interface Navigator extends NavigatorStorage, NavigatorAutomationInformation, NavigatorID, NavigatorLanguage, NavigatorOnLine, NavigatorContentUtils, NavigatorCookies, NavigatorPlugins, NavigatorConcurrentHardware {
10802+
interface Navigator extends MSFileSaver, MSNavigatorDoNotTrack, NavigatorStorage, NavigatorAutomationInformation, NavigatorID, NavigatorLanguage, NavigatorOnLine, NavigatorContentUtils, NavigatorCookies, NavigatorPlugins, NavigatorConcurrentHardware {
1078910803
readonly clipboard: Clipboard;
1079010804
readonly credentials: CredentialsContainer;
1079110805
readonly doNotTrack: string | null;

0 commit comments

Comments
 (0)