Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion baselines/dom.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25760,7 +25760,7 @@ declare var NavigationTransition: {
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator)
*/
interface Navigator extends NavigatorAutomationInformation, NavigatorBadge, NavigatorConcurrentHardware, NavigatorContentUtils, NavigatorCookies, NavigatorID, NavigatorLanguage, NavigatorLocks, NavigatorOnLine, NavigatorPlugins, NavigatorStorage {
interface Navigator extends NavigatorAutomationInformation, NavigatorBadge, NavigatorConcurrentHardware, NavigatorContentUtils, NavigatorCookies, NavigatorGPU, NavigatorID, NavigatorLanguage, NavigatorLocks, NavigatorOnLine, NavigatorPlugins, NavigatorStorage {
/**
* The **`clipboard`** read-only property of the Navigator interface returns a Clipboard object used to read and write the clipboard's contents.
* Available only in secure contexts.
Expand Down Expand Up @@ -25925,6 +25925,15 @@ interface NavigatorCookies {
readonly cookieEnabled: boolean;
}

interface NavigatorGPU {
/**
* Available only in secure contexts.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/gpu)
*/
readonly gpu: GPU;
}

interface NavigatorID {
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/appCodeName) */
readonly appCodeName: string;
Expand Down
11 changes: 10 additions & 1 deletion baselines/serviceworker.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6834,6 +6834,15 @@ interface NavigatorConcurrentHardware {
readonly hardwareConcurrency: number;
}

interface NavigatorGPU {
/**
* Available only in secure contexts.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/gpu)
*/
readonly gpu: GPU;
}

interface NavigatorID {
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/appCodeName) */
readonly appCodeName: string;
Expand Down Expand Up @@ -12510,7 +12519,7 @@ declare var WorkerLocation: {
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/WorkerNavigator)
*/
interface WorkerNavigator extends NavigatorBadge, NavigatorConcurrentHardware, NavigatorID, NavigatorLanguage, NavigatorLocks, NavigatorOnLine, NavigatorStorage {
interface WorkerNavigator extends NavigatorBadge, NavigatorConcurrentHardware, NavigatorGPU, NavigatorID, NavigatorLanguage, NavigatorLocks, NavigatorOnLine, NavigatorStorage {
/**
* The read-only **`mediaCapabilities`** property of the WorkerNavigator interface references a MediaCapabilities object that can expose information about the decoding and encoding capabilities for a given format and output capabilities (as defined by the Media Capabilities API).
*
Expand Down
11 changes: 10 additions & 1 deletion baselines/sharedworker.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6517,6 +6517,15 @@ interface NavigatorConcurrentHardware {
readonly hardwareConcurrency: number;
}

interface NavigatorGPU {
/**
* Available only in secure contexts.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/gpu)
*/
readonly gpu: GPU;
}

interface NavigatorID {
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/appCodeName) */
readonly appCodeName: string;
Expand Down Expand Up @@ -12049,7 +12058,7 @@ declare var WorkerLocation: {
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/WorkerNavigator)
*/
interface WorkerNavigator extends NavigatorBadge, NavigatorConcurrentHardware, NavigatorID, NavigatorLanguage, NavigatorLocks, NavigatorOnLine, NavigatorStorage {
interface WorkerNavigator extends NavigatorBadge, NavigatorConcurrentHardware, NavigatorGPU, NavigatorID, NavigatorLanguage, NavigatorLocks, NavigatorOnLine, NavigatorStorage {
/**
* The read-only **`mediaCapabilities`** property of the WorkerNavigator interface references a MediaCapabilities object that can expose information about the decoding and encoding capabilities for a given format and output capabilities (as defined by the Media Capabilities API).
*
Expand Down
11 changes: 10 additions & 1 deletion baselines/ts5.5/dom.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25736,7 +25736,7 @@ declare var NavigationTransition: {
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator)
*/
interface Navigator extends NavigatorAutomationInformation, NavigatorBadge, NavigatorConcurrentHardware, NavigatorContentUtils, NavigatorCookies, NavigatorID, NavigatorLanguage, NavigatorLocks, NavigatorOnLine, NavigatorPlugins, NavigatorStorage {
interface Navigator extends NavigatorAutomationInformation, NavigatorBadge, NavigatorConcurrentHardware, NavigatorContentUtils, NavigatorCookies, NavigatorGPU, NavigatorID, NavigatorLanguage, NavigatorLocks, NavigatorOnLine, NavigatorPlugins, NavigatorStorage {
/**
* The **`clipboard`** read-only property of the Navigator interface returns a Clipboard object used to read and write the clipboard's contents.
* Available only in secure contexts.
Expand Down Expand Up @@ -25901,6 +25901,15 @@ interface NavigatorCookies {
readonly cookieEnabled: boolean;
}

interface NavigatorGPU {
/**
* Available only in secure contexts.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/gpu)
*/
readonly gpu: GPU;
}

interface NavigatorID {
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/appCodeName) */
readonly appCodeName: string;
Expand Down
11 changes: 10 additions & 1 deletion baselines/ts5.5/serviceworker.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6831,6 +6831,15 @@ interface NavigatorConcurrentHardware {
readonly hardwareConcurrency: number;
}

interface NavigatorGPU {
/**
* Available only in secure contexts.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/gpu)
*/
readonly gpu: GPU;
}

interface NavigatorID {
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/appCodeName) */
readonly appCodeName: string;
Expand Down Expand Up @@ -12507,7 +12516,7 @@ declare var WorkerLocation: {
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/WorkerNavigator)
*/
interface WorkerNavigator extends NavigatorBadge, NavigatorConcurrentHardware, NavigatorID, NavigatorLanguage, NavigatorLocks, NavigatorOnLine, NavigatorStorage {
interface WorkerNavigator extends NavigatorBadge, NavigatorConcurrentHardware, NavigatorGPU, NavigatorID, NavigatorLanguage, NavigatorLocks, NavigatorOnLine, NavigatorStorage {
/**
* The read-only **`mediaCapabilities`** property of the WorkerNavigator interface references a MediaCapabilities object that can expose information about the decoding and encoding capabilities for a given format and output capabilities (as defined by the Media Capabilities API).
*
Expand Down
11 changes: 10 additions & 1 deletion baselines/ts5.5/sharedworker.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6514,6 +6514,15 @@ interface NavigatorConcurrentHardware {
readonly hardwareConcurrency: number;
}

interface NavigatorGPU {
/**
* Available only in secure contexts.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/gpu)
*/
readonly gpu: GPU;
}

interface NavigatorID {
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/appCodeName) */
readonly appCodeName: string;
Expand Down Expand Up @@ -12046,7 +12055,7 @@ declare var WorkerLocation: {
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/WorkerNavigator)
*/
interface WorkerNavigator extends NavigatorBadge, NavigatorConcurrentHardware, NavigatorID, NavigatorLanguage, NavigatorLocks, NavigatorOnLine, NavigatorStorage {
interface WorkerNavigator extends NavigatorBadge, NavigatorConcurrentHardware, NavigatorGPU, NavigatorID, NavigatorLanguage, NavigatorLocks, NavigatorOnLine, NavigatorStorage {
/**
* The read-only **`mediaCapabilities`** property of the WorkerNavigator interface references a MediaCapabilities object that can expose information about the decoding and encoding capabilities for a given format and output capabilities (as defined by the Media Capabilities API).
*
Expand Down
11 changes: 10 additions & 1 deletion baselines/ts5.5/webworker.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7705,6 +7705,15 @@ interface NavigatorConcurrentHardware {
readonly hardwareConcurrency: number;
}

interface NavigatorGPU {
/**
* Available only in secure contexts.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/gpu)
*/
readonly gpu: GPU;
}

interface NavigatorID {
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/appCodeName) */
readonly appCodeName: string;
Expand Down Expand Up @@ -13995,7 +14004,7 @@ declare var WorkerLocation: {
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/WorkerNavigator)
*/
interface WorkerNavigator extends NavigatorBadge, NavigatorConcurrentHardware, NavigatorID, NavigatorLanguage, NavigatorLocks, NavigatorOnLine, NavigatorStorage {
interface WorkerNavigator extends NavigatorBadge, NavigatorConcurrentHardware, NavigatorGPU, NavigatorID, NavigatorLanguage, NavigatorLocks, NavigatorOnLine, NavigatorStorage {
/**
* The read-only **`mediaCapabilities`** property of the WorkerNavigator interface references a MediaCapabilities object that can expose information about the decoding and encoding capabilities for a given format and output capabilities (as defined by the Media Capabilities API).
*
Expand Down
11 changes: 10 additions & 1 deletion baselines/ts5.6/dom.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25757,7 +25757,7 @@ declare var NavigationTransition: {
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator)
*/
interface Navigator extends NavigatorAutomationInformation, NavigatorBadge, NavigatorConcurrentHardware, NavigatorContentUtils, NavigatorCookies, NavigatorID, NavigatorLanguage, NavigatorLocks, NavigatorOnLine, NavigatorPlugins, NavigatorStorage {
interface Navigator extends NavigatorAutomationInformation, NavigatorBadge, NavigatorConcurrentHardware, NavigatorContentUtils, NavigatorCookies, NavigatorGPU, NavigatorID, NavigatorLanguage, NavigatorLocks, NavigatorOnLine, NavigatorPlugins, NavigatorStorage {
/**
* The **`clipboard`** read-only property of the Navigator interface returns a Clipboard object used to read and write the clipboard's contents.
* Available only in secure contexts.
Expand Down Expand Up @@ -25922,6 +25922,15 @@ interface NavigatorCookies {
readonly cookieEnabled: boolean;
}

interface NavigatorGPU {
/**
* Available only in secure contexts.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/gpu)
*/
readonly gpu: GPU;
}

interface NavigatorID {
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/appCodeName) */
readonly appCodeName: string;
Expand Down
11 changes: 10 additions & 1 deletion baselines/ts5.6/serviceworker.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6831,6 +6831,15 @@ interface NavigatorConcurrentHardware {
readonly hardwareConcurrency: number;
}

interface NavigatorGPU {
/**
* Available only in secure contexts.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/gpu)
*/
readonly gpu: GPU;
}

interface NavigatorID {
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/appCodeName) */
readonly appCodeName: string;
Expand Down Expand Up @@ -12507,7 +12516,7 @@ declare var WorkerLocation: {
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/WorkerNavigator)
*/
interface WorkerNavigator extends NavigatorBadge, NavigatorConcurrentHardware, NavigatorID, NavigatorLanguage, NavigatorLocks, NavigatorOnLine, NavigatorStorage {
interface WorkerNavigator extends NavigatorBadge, NavigatorConcurrentHardware, NavigatorGPU, NavigatorID, NavigatorLanguage, NavigatorLocks, NavigatorOnLine, NavigatorStorage {
/**
* The read-only **`mediaCapabilities`** property of the WorkerNavigator interface references a MediaCapabilities object that can expose information about the decoding and encoding capabilities for a given format and output capabilities (as defined by the Media Capabilities API).
*
Expand Down
11 changes: 10 additions & 1 deletion baselines/ts5.6/sharedworker.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6514,6 +6514,15 @@ interface NavigatorConcurrentHardware {
readonly hardwareConcurrency: number;
}

interface NavigatorGPU {
/**
* Available only in secure contexts.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/gpu)
*/
readonly gpu: GPU;
}

interface NavigatorID {
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/appCodeName) */
readonly appCodeName: string;
Expand Down Expand Up @@ -12046,7 +12055,7 @@ declare var WorkerLocation: {
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/WorkerNavigator)
*/
interface WorkerNavigator extends NavigatorBadge, NavigatorConcurrentHardware, NavigatorID, NavigatorLanguage, NavigatorLocks, NavigatorOnLine, NavigatorStorage {
interface WorkerNavigator extends NavigatorBadge, NavigatorConcurrentHardware, NavigatorGPU, NavigatorID, NavigatorLanguage, NavigatorLocks, NavigatorOnLine, NavigatorStorage {
/**
* The read-only **`mediaCapabilities`** property of the WorkerNavigator interface references a MediaCapabilities object that can expose information about the decoding and encoding capabilities for a given format and output capabilities (as defined by the Media Capabilities API).
*
Expand Down
11 changes: 10 additions & 1 deletion baselines/ts5.6/webworker.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7705,6 +7705,15 @@ interface NavigatorConcurrentHardware {
readonly hardwareConcurrency: number;
}

interface NavigatorGPU {
/**
* Available only in secure contexts.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/gpu)
*/
readonly gpu: GPU;
}

interface NavigatorID {
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/appCodeName) */
readonly appCodeName: string;
Expand Down Expand Up @@ -13995,7 +14004,7 @@ declare var WorkerLocation: {
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/WorkerNavigator)
*/
interface WorkerNavigator extends NavigatorBadge, NavigatorConcurrentHardware, NavigatorID, NavigatorLanguage, NavigatorLocks, NavigatorOnLine, NavigatorStorage {
interface WorkerNavigator extends NavigatorBadge, NavigatorConcurrentHardware, NavigatorGPU, NavigatorID, NavigatorLanguage, NavigatorLocks, NavigatorOnLine, NavigatorStorage {
/**
* The read-only **`mediaCapabilities`** property of the WorkerNavigator interface references a MediaCapabilities object that can expose information about the decoding and encoding capabilities for a given format and output capabilities (as defined by the Media Capabilities API).
*
Expand Down
11 changes: 10 additions & 1 deletion baselines/ts5.9/dom.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25757,7 +25757,7 @@ declare var NavigationTransition: {
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator)
*/
interface Navigator extends NavigatorAutomationInformation, NavigatorBadge, NavigatorConcurrentHardware, NavigatorContentUtils, NavigatorCookies, NavigatorID, NavigatorLanguage, NavigatorLocks, NavigatorOnLine, NavigatorPlugins, NavigatorStorage {
interface Navigator extends NavigatorAutomationInformation, NavigatorBadge, NavigatorConcurrentHardware, NavigatorContentUtils, NavigatorCookies, NavigatorGPU, NavigatorID, NavigatorLanguage, NavigatorLocks, NavigatorOnLine, NavigatorPlugins, NavigatorStorage {
/**
* The **`clipboard`** read-only property of the Navigator interface returns a Clipboard object used to read and write the clipboard's contents.
* Available only in secure contexts.
Expand Down Expand Up @@ -25922,6 +25922,15 @@ interface NavigatorCookies {
readonly cookieEnabled: boolean;
}

interface NavigatorGPU {
/**
* Available only in secure contexts.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/gpu)
*/
readonly gpu: GPU;
}

interface NavigatorID {
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/appCodeName) */
readonly appCodeName: string;
Expand Down
11 changes: 10 additions & 1 deletion baselines/ts5.9/serviceworker.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6831,6 +6831,15 @@ interface NavigatorConcurrentHardware {
readonly hardwareConcurrency: number;
}

interface NavigatorGPU {
/**
* Available only in secure contexts.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/gpu)
*/
readonly gpu: GPU;
}

interface NavigatorID {
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/appCodeName) */
readonly appCodeName: string;
Expand Down Expand Up @@ -12507,7 +12516,7 @@ declare var WorkerLocation: {
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/WorkerNavigator)
*/
interface WorkerNavigator extends NavigatorBadge, NavigatorConcurrentHardware, NavigatorID, NavigatorLanguage, NavigatorLocks, NavigatorOnLine, NavigatorStorage {
interface WorkerNavigator extends NavigatorBadge, NavigatorConcurrentHardware, NavigatorGPU, NavigatorID, NavigatorLanguage, NavigatorLocks, NavigatorOnLine, NavigatorStorage {
/**
* The read-only **`mediaCapabilities`** property of the WorkerNavigator interface references a MediaCapabilities object that can expose information about the decoding and encoding capabilities for a given format and output capabilities (as defined by the Media Capabilities API).
*
Expand Down
11 changes: 10 additions & 1 deletion baselines/ts5.9/sharedworker.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6514,6 +6514,15 @@ interface NavigatorConcurrentHardware {
readonly hardwareConcurrency: number;
}

interface NavigatorGPU {
/**
* Available only in secure contexts.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/gpu)
*/
readonly gpu: GPU;
}

interface NavigatorID {
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/appCodeName) */
readonly appCodeName: string;
Expand Down Expand Up @@ -12046,7 +12055,7 @@ declare var WorkerLocation: {
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/WorkerNavigator)
*/
interface WorkerNavigator extends NavigatorBadge, NavigatorConcurrentHardware, NavigatorID, NavigatorLanguage, NavigatorLocks, NavigatorOnLine, NavigatorStorage {
interface WorkerNavigator extends NavigatorBadge, NavigatorConcurrentHardware, NavigatorGPU, NavigatorID, NavigatorLanguage, NavigatorLocks, NavigatorOnLine, NavigatorStorage {
/**
* The read-only **`mediaCapabilities`** property of the WorkerNavigator interface references a MediaCapabilities object that can expose information about the decoding and encoding capabilities for a given format and output capabilities (as defined by the Media Capabilities API).
*
Expand Down
11 changes: 10 additions & 1 deletion baselines/ts5.9/webworker.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7705,6 +7705,15 @@ interface NavigatorConcurrentHardware {
readonly hardwareConcurrency: number;
}

interface NavigatorGPU {
/**
* Available only in secure contexts.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/gpu)
*/
readonly gpu: GPU;
}

interface NavigatorID {
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/appCodeName) */
readonly appCodeName: string;
Expand Down Expand Up @@ -13995,7 +14004,7 @@ declare var WorkerLocation: {
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/WorkerNavigator)
*/
interface WorkerNavigator extends NavigatorBadge, NavigatorConcurrentHardware, NavigatorID, NavigatorLanguage, NavigatorLocks, NavigatorOnLine, NavigatorStorage {
interface WorkerNavigator extends NavigatorBadge, NavigatorConcurrentHardware, NavigatorGPU, NavigatorID, NavigatorLanguage, NavigatorLocks, NavigatorOnLine, NavigatorStorage {
/**
* The read-only **`mediaCapabilities`** property of the WorkerNavigator interface references a MediaCapabilities object that can expose information about the decoding and encoding capabilities for a given format and output capabilities (as defined by the Media Capabilities API).
*
Expand Down
11 changes: 10 additions & 1 deletion baselines/webworker.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7708,6 +7708,15 @@ interface NavigatorConcurrentHardware {
readonly hardwareConcurrency: number;
}

interface NavigatorGPU {
/**
* Available only in secure contexts.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/gpu)
*/
readonly gpu: GPU;
}

interface NavigatorID {
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/appCodeName) */
readonly appCodeName: string;
Expand Down Expand Up @@ -13998,7 +14007,7 @@ declare var WorkerLocation: {
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/WorkerNavigator)
*/
interface WorkerNavigator extends NavigatorBadge, NavigatorConcurrentHardware, NavigatorID, NavigatorLanguage, NavigatorLocks, NavigatorOnLine, NavigatorStorage {
interface WorkerNavigator extends NavigatorBadge, NavigatorConcurrentHardware, NavigatorGPU, NavigatorID, NavigatorLanguage, NavigatorLocks, NavigatorOnLine, NavigatorStorage {
/**
* The read-only **`mediaCapabilities`** property of the WorkerNavigator interface references a MediaCapabilities object that can expose information about the decoding and encoding capabilities for a given format and output capabilities (as defined by the Media Capabilities API).
*
Expand Down
Loading