@types/web 0.0.323 → 0.0.325
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/index.d.ts +60 -4
- package/package.json +1 -1
- package/ts5.5/index.d.ts +60 -4
- package/ts5.6/index.d.ts +60 -4
- package/ts5.9/index.d.ts +60 -4
package/README.md
CHANGED
|
@@ -47,4 +47,4 @@ Prior to `@types/web` the web APIs were deployed with a version of TypeScript, a
|
|
|
47
47
|
|
|
48
48
|
## Deploy Metadata
|
|
49
49
|
|
|
50
|
-
You can read what changed in version 0.0.
|
|
50
|
+
You can read what changed in version 0.0.325 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fweb%400.0.325.
|
package/index.d.ts
CHANGED
|
@@ -14767,6 +14767,62 @@ declare var FragmentDirective: {
|
|
|
14767
14767
|
new(): FragmentDirective;
|
|
14768
14768
|
};
|
|
14769
14769
|
|
|
14770
|
+
/**
|
|
14771
|
+
* The **`GPUAdapterInfo`** interface of the WebGPU API contains identifying information about a GPUAdapter.
|
|
14772
|
+
* Available only in secure contexts.
|
|
14773
|
+
*
|
|
14774
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUAdapterInfo)
|
|
14775
|
+
*/
|
|
14776
|
+
interface GPUAdapterInfo {
|
|
14777
|
+
/**
|
|
14778
|
+
* The **`architecture`** read-only property of the GPUAdapterInfo interface returns the name of the family or class of GPUs the adapter belongs to, or an empty string if it is not available.
|
|
14779
|
+
*
|
|
14780
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUAdapterInfo/architecture)
|
|
14781
|
+
*/
|
|
14782
|
+
readonly architecture: string;
|
|
14783
|
+
/**
|
|
14784
|
+
* The **`description`** read-only property of the GPUAdapterInfo interface returns a human-readable string describing the adapter, or an empty string if it is not available.
|
|
14785
|
+
*
|
|
14786
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUAdapterInfo/description)
|
|
14787
|
+
*/
|
|
14788
|
+
readonly description: string;
|
|
14789
|
+
/**
|
|
14790
|
+
* The **`device`** read-only property of the GPUAdapterInfo interface returns a vendor-specific identifier for the adapter, or an empty string if it is not available.
|
|
14791
|
+
*
|
|
14792
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUAdapterInfo/device)
|
|
14793
|
+
*/
|
|
14794
|
+
readonly device: string;
|
|
14795
|
+
/**
|
|
14796
|
+
* The **`isFallbackAdapter`** read-only property of the GPUAdapterInfo interface returns true if the adapter is a fallback adapter, and false if not.
|
|
14797
|
+
*
|
|
14798
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUAdapterInfo/isFallbackAdapter)
|
|
14799
|
+
*/
|
|
14800
|
+
readonly isFallbackAdapter: boolean;
|
|
14801
|
+
/**
|
|
14802
|
+
* The **`subgroupMaxSize`** read-only property of the GPUAdapterInfo interface returns the maximum supported subgroup size for the GPUAdapter. This can be used along with the subgroups feature.
|
|
14803
|
+
*
|
|
14804
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUAdapterInfo/subgroupMaxSize)
|
|
14805
|
+
*/
|
|
14806
|
+
readonly subgroupMaxSize: number;
|
|
14807
|
+
/**
|
|
14808
|
+
* The **`subgroupMinSize`** read-only property of the GPUAdapterInfo interface returns the minimum supported subgroup size for the GPUAdapter. This can be used along with the subgroups feature.
|
|
14809
|
+
*
|
|
14810
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUAdapterInfo/subgroupMinSize)
|
|
14811
|
+
*/
|
|
14812
|
+
readonly subgroupMinSize: number;
|
|
14813
|
+
/**
|
|
14814
|
+
* The **`vendor`** read-only property of the GPUAdapterInfo interface returns the name of the adapter vendor, or an empty string if it is not available.
|
|
14815
|
+
*
|
|
14816
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUAdapterInfo/vendor)
|
|
14817
|
+
*/
|
|
14818
|
+
readonly vendor: string;
|
|
14819
|
+
}
|
|
14820
|
+
|
|
14821
|
+
declare var GPUAdapterInfo: {
|
|
14822
|
+
prototype: GPUAdapterInfo;
|
|
14823
|
+
new(): GPUAdapterInfo;
|
|
14824
|
+
};
|
|
14825
|
+
|
|
14770
14826
|
/**
|
|
14771
14827
|
* The **`GPUBindGroup`** interface of the WebGPU API is based on a GPUBindGroupLayout and defines a set of resources to be bound together in a group and how those resources are used in shader stages.
|
|
14772
14828
|
* Available only in secure contexts.
|
|
@@ -16856,13 +16912,13 @@ interface HTMLDialogElement extends HTMLElement {
|
|
|
16856
16912
|
*/
|
|
16857
16913
|
requestClose(returnValue?: string): void;
|
|
16858
16914
|
/**
|
|
16859
|
-
* The **`show()`** method of the HTMLDialogElement interface displays the dialog
|
|
16915
|
+
* The **`show()`** method of the HTMLDialogElement interface displays the dialog as a non-modal dialog.
|
|
16860
16916
|
*
|
|
16861
16917
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDialogElement/show)
|
|
16862
16918
|
*/
|
|
16863
16919
|
show(): void;
|
|
16864
16920
|
/**
|
|
16865
|
-
* The **`showModal()`** method of the HTMLDialogElement interface displays the dialog as a modal, over the top of any other dialogs that might be
|
|
16921
|
+
* The **`showModal()`** method of the HTMLDialogElement interface displays the dialog as a modal dialog, over the top of any other dialogs or elements that might be visible.
|
|
16866
16922
|
*
|
|
16867
16923
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDialogElement/showModal)
|
|
16868
16924
|
*/
|
|
@@ -24274,13 +24330,13 @@ interface MouseEvent extends UIEvent {
|
|
|
24274
24330
|
*/
|
|
24275
24331
|
readonly metaKey: boolean;
|
|
24276
24332
|
/**
|
|
24277
|
-
* The **`movementX`** read-only property of the MouseEvent interface provides the difference in the X coordinate of the mouse pointer between the given event and the previous
|
|
24333
|
+
* The **`movementX`** read-only property of the MouseEvent interface provides the difference in the X coordinate of the mouse (or pointer) between the given move event and the previous move event of the same type.
|
|
24278
24334
|
*
|
|
24279
24335
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MouseEvent/movementX)
|
|
24280
24336
|
*/
|
|
24281
24337
|
readonly movementX: number;
|
|
24282
24338
|
/**
|
|
24283
|
-
* The **`movementY`** read-only property of the MouseEvent interface provides the difference in the Y coordinate of the mouse pointer between the given event and the previous
|
|
24339
|
+
* The **`movementY`** read-only property of the MouseEvent interface provides the difference in the Y coordinate of the mouse (or pointer) between the given move event and the previous move event of the same type.
|
|
24284
24340
|
*
|
|
24285
24341
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MouseEvent/movementY)
|
|
24286
24342
|
*/
|
package/package.json
CHANGED
package/ts5.5/index.d.ts
CHANGED
|
@@ -14753,6 +14753,62 @@ declare var FragmentDirective: {
|
|
|
14753
14753
|
new(): FragmentDirective;
|
|
14754
14754
|
};
|
|
14755
14755
|
|
|
14756
|
+
/**
|
|
14757
|
+
* The **`GPUAdapterInfo`** interface of the WebGPU API contains identifying information about a GPUAdapter.
|
|
14758
|
+
* Available only in secure contexts.
|
|
14759
|
+
*
|
|
14760
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUAdapterInfo)
|
|
14761
|
+
*/
|
|
14762
|
+
interface GPUAdapterInfo {
|
|
14763
|
+
/**
|
|
14764
|
+
* The **`architecture`** read-only property of the GPUAdapterInfo interface returns the name of the family or class of GPUs the adapter belongs to, or an empty string if it is not available.
|
|
14765
|
+
*
|
|
14766
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUAdapterInfo/architecture)
|
|
14767
|
+
*/
|
|
14768
|
+
readonly architecture: string;
|
|
14769
|
+
/**
|
|
14770
|
+
* The **`description`** read-only property of the GPUAdapterInfo interface returns a human-readable string describing the adapter, or an empty string if it is not available.
|
|
14771
|
+
*
|
|
14772
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUAdapterInfo/description)
|
|
14773
|
+
*/
|
|
14774
|
+
readonly description: string;
|
|
14775
|
+
/**
|
|
14776
|
+
* The **`device`** read-only property of the GPUAdapterInfo interface returns a vendor-specific identifier for the adapter, or an empty string if it is not available.
|
|
14777
|
+
*
|
|
14778
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUAdapterInfo/device)
|
|
14779
|
+
*/
|
|
14780
|
+
readonly device: string;
|
|
14781
|
+
/**
|
|
14782
|
+
* The **`isFallbackAdapter`** read-only property of the GPUAdapterInfo interface returns true if the adapter is a fallback adapter, and false if not.
|
|
14783
|
+
*
|
|
14784
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUAdapterInfo/isFallbackAdapter)
|
|
14785
|
+
*/
|
|
14786
|
+
readonly isFallbackAdapter: boolean;
|
|
14787
|
+
/**
|
|
14788
|
+
* The **`subgroupMaxSize`** read-only property of the GPUAdapterInfo interface returns the maximum supported subgroup size for the GPUAdapter. This can be used along with the subgroups feature.
|
|
14789
|
+
*
|
|
14790
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUAdapterInfo/subgroupMaxSize)
|
|
14791
|
+
*/
|
|
14792
|
+
readonly subgroupMaxSize: number;
|
|
14793
|
+
/**
|
|
14794
|
+
* The **`subgroupMinSize`** read-only property of the GPUAdapterInfo interface returns the minimum supported subgroup size for the GPUAdapter. This can be used along with the subgroups feature.
|
|
14795
|
+
*
|
|
14796
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUAdapterInfo/subgroupMinSize)
|
|
14797
|
+
*/
|
|
14798
|
+
readonly subgroupMinSize: number;
|
|
14799
|
+
/**
|
|
14800
|
+
* The **`vendor`** read-only property of the GPUAdapterInfo interface returns the name of the adapter vendor, or an empty string if it is not available.
|
|
14801
|
+
*
|
|
14802
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUAdapterInfo/vendor)
|
|
14803
|
+
*/
|
|
14804
|
+
readonly vendor: string;
|
|
14805
|
+
}
|
|
14806
|
+
|
|
14807
|
+
declare var GPUAdapterInfo: {
|
|
14808
|
+
prototype: GPUAdapterInfo;
|
|
14809
|
+
new(): GPUAdapterInfo;
|
|
14810
|
+
};
|
|
14811
|
+
|
|
14756
14812
|
/**
|
|
14757
14813
|
* The **`GPUBindGroup`** interface of the WebGPU API is based on a GPUBindGroupLayout and defines a set of resources to be bound together in a group and how those resources are used in shader stages.
|
|
14758
14814
|
* Available only in secure contexts.
|
|
@@ -16840,13 +16896,13 @@ interface HTMLDialogElement extends HTMLElement {
|
|
|
16840
16896
|
*/
|
|
16841
16897
|
requestClose(returnValue?: string): void;
|
|
16842
16898
|
/**
|
|
16843
|
-
* The **`show()`** method of the HTMLDialogElement interface displays the dialog
|
|
16899
|
+
* The **`show()`** method of the HTMLDialogElement interface displays the dialog as a non-modal dialog.
|
|
16844
16900
|
*
|
|
16845
16901
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDialogElement/show)
|
|
16846
16902
|
*/
|
|
16847
16903
|
show(): void;
|
|
16848
16904
|
/**
|
|
16849
|
-
* The **`showModal()`** method of the HTMLDialogElement interface displays the dialog as a modal, over the top of any other dialogs that might be
|
|
16905
|
+
* The **`showModal()`** method of the HTMLDialogElement interface displays the dialog as a modal dialog, over the top of any other dialogs or elements that might be visible.
|
|
16850
16906
|
*
|
|
16851
16907
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDialogElement/showModal)
|
|
16852
16908
|
*/
|
|
@@ -24250,13 +24306,13 @@ interface MouseEvent extends UIEvent {
|
|
|
24250
24306
|
*/
|
|
24251
24307
|
readonly metaKey: boolean;
|
|
24252
24308
|
/**
|
|
24253
|
-
* The **`movementX`** read-only property of the MouseEvent interface provides the difference in the X coordinate of the mouse pointer between the given event and the previous
|
|
24309
|
+
* The **`movementX`** read-only property of the MouseEvent interface provides the difference in the X coordinate of the mouse (or pointer) between the given move event and the previous move event of the same type.
|
|
24254
24310
|
*
|
|
24255
24311
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MouseEvent/movementX)
|
|
24256
24312
|
*/
|
|
24257
24313
|
readonly movementX: number;
|
|
24258
24314
|
/**
|
|
24259
|
-
* The **`movementY`** read-only property of the MouseEvent interface provides the difference in the Y coordinate of the mouse pointer between the given event and the previous
|
|
24315
|
+
* The **`movementY`** read-only property of the MouseEvent interface provides the difference in the Y coordinate of the mouse (or pointer) between the given move event and the previous move event of the same type.
|
|
24260
24316
|
*
|
|
24261
24317
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MouseEvent/movementY)
|
|
24262
24318
|
*/
|
package/ts5.6/index.d.ts
CHANGED
|
@@ -14764,6 +14764,62 @@ declare var FragmentDirective: {
|
|
|
14764
14764
|
new(): FragmentDirective;
|
|
14765
14765
|
};
|
|
14766
14766
|
|
|
14767
|
+
/**
|
|
14768
|
+
* The **`GPUAdapterInfo`** interface of the WebGPU API contains identifying information about a GPUAdapter.
|
|
14769
|
+
* Available only in secure contexts.
|
|
14770
|
+
*
|
|
14771
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUAdapterInfo)
|
|
14772
|
+
*/
|
|
14773
|
+
interface GPUAdapterInfo {
|
|
14774
|
+
/**
|
|
14775
|
+
* The **`architecture`** read-only property of the GPUAdapterInfo interface returns the name of the family or class of GPUs the adapter belongs to, or an empty string if it is not available.
|
|
14776
|
+
*
|
|
14777
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUAdapterInfo/architecture)
|
|
14778
|
+
*/
|
|
14779
|
+
readonly architecture: string;
|
|
14780
|
+
/**
|
|
14781
|
+
* The **`description`** read-only property of the GPUAdapterInfo interface returns a human-readable string describing the adapter, or an empty string if it is not available.
|
|
14782
|
+
*
|
|
14783
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUAdapterInfo/description)
|
|
14784
|
+
*/
|
|
14785
|
+
readonly description: string;
|
|
14786
|
+
/**
|
|
14787
|
+
* The **`device`** read-only property of the GPUAdapterInfo interface returns a vendor-specific identifier for the adapter, or an empty string if it is not available.
|
|
14788
|
+
*
|
|
14789
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUAdapterInfo/device)
|
|
14790
|
+
*/
|
|
14791
|
+
readonly device: string;
|
|
14792
|
+
/**
|
|
14793
|
+
* The **`isFallbackAdapter`** read-only property of the GPUAdapterInfo interface returns true if the adapter is a fallback adapter, and false if not.
|
|
14794
|
+
*
|
|
14795
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUAdapterInfo/isFallbackAdapter)
|
|
14796
|
+
*/
|
|
14797
|
+
readonly isFallbackAdapter: boolean;
|
|
14798
|
+
/**
|
|
14799
|
+
* The **`subgroupMaxSize`** read-only property of the GPUAdapterInfo interface returns the maximum supported subgroup size for the GPUAdapter. This can be used along with the subgroups feature.
|
|
14800
|
+
*
|
|
14801
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUAdapterInfo/subgroupMaxSize)
|
|
14802
|
+
*/
|
|
14803
|
+
readonly subgroupMaxSize: number;
|
|
14804
|
+
/**
|
|
14805
|
+
* The **`subgroupMinSize`** read-only property of the GPUAdapterInfo interface returns the minimum supported subgroup size for the GPUAdapter. This can be used along with the subgroups feature.
|
|
14806
|
+
*
|
|
14807
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUAdapterInfo/subgroupMinSize)
|
|
14808
|
+
*/
|
|
14809
|
+
readonly subgroupMinSize: number;
|
|
14810
|
+
/**
|
|
14811
|
+
* The **`vendor`** read-only property of the GPUAdapterInfo interface returns the name of the adapter vendor, or an empty string if it is not available.
|
|
14812
|
+
*
|
|
14813
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUAdapterInfo/vendor)
|
|
14814
|
+
*/
|
|
14815
|
+
readonly vendor: string;
|
|
14816
|
+
}
|
|
14817
|
+
|
|
14818
|
+
declare var GPUAdapterInfo: {
|
|
14819
|
+
prototype: GPUAdapterInfo;
|
|
14820
|
+
new(): GPUAdapterInfo;
|
|
14821
|
+
};
|
|
14822
|
+
|
|
14767
14823
|
/**
|
|
14768
14824
|
* The **`GPUBindGroup`** interface of the WebGPU API is based on a GPUBindGroupLayout and defines a set of resources to be bound together in a group and how those resources are used in shader stages.
|
|
14769
14825
|
* Available only in secure contexts.
|
|
@@ -16853,13 +16909,13 @@ interface HTMLDialogElement extends HTMLElement {
|
|
|
16853
16909
|
*/
|
|
16854
16910
|
requestClose(returnValue?: string): void;
|
|
16855
16911
|
/**
|
|
16856
|
-
* The **`show()`** method of the HTMLDialogElement interface displays the dialog
|
|
16912
|
+
* The **`show()`** method of the HTMLDialogElement interface displays the dialog as a non-modal dialog.
|
|
16857
16913
|
*
|
|
16858
16914
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDialogElement/show)
|
|
16859
16915
|
*/
|
|
16860
16916
|
show(): void;
|
|
16861
16917
|
/**
|
|
16862
|
-
* The **`showModal()`** method of the HTMLDialogElement interface displays the dialog as a modal, over the top of any other dialogs that might be
|
|
16918
|
+
* The **`showModal()`** method of the HTMLDialogElement interface displays the dialog as a modal dialog, over the top of any other dialogs or elements that might be visible.
|
|
16863
16919
|
*
|
|
16864
16920
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDialogElement/showModal)
|
|
16865
16921
|
*/
|
|
@@ -24271,13 +24327,13 @@ interface MouseEvent extends UIEvent {
|
|
|
24271
24327
|
*/
|
|
24272
24328
|
readonly metaKey: boolean;
|
|
24273
24329
|
/**
|
|
24274
|
-
* The **`movementX`** read-only property of the MouseEvent interface provides the difference in the X coordinate of the mouse pointer between the given event and the previous
|
|
24330
|
+
* The **`movementX`** read-only property of the MouseEvent interface provides the difference in the X coordinate of the mouse (or pointer) between the given move event and the previous move event of the same type.
|
|
24275
24331
|
*
|
|
24276
24332
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MouseEvent/movementX)
|
|
24277
24333
|
*/
|
|
24278
24334
|
readonly movementX: number;
|
|
24279
24335
|
/**
|
|
24280
|
-
* The **`movementY`** read-only property of the MouseEvent interface provides the difference in the Y coordinate of the mouse pointer between the given event and the previous
|
|
24336
|
+
* The **`movementY`** read-only property of the MouseEvent interface provides the difference in the Y coordinate of the mouse (or pointer) between the given move event and the previous move event of the same type.
|
|
24281
24337
|
*
|
|
24282
24338
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MouseEvent/movementY)
|
|
24283
24339
|
*/
|
package/ts5.9/index.d.ts
CHANGED
|
@@ -14764,6 +14764,62 @@ declare var FragmentDirective: {
|
|
|
14764
14764
|
new(): FragmentDirective;
|
|
14765
14765
|
};
|
|
14766
14766
|
|
|
14767
|
+
/**
|
|
14768
|
+
* The **`GPUAdapterInfo`** interface of the WebGPU API contains identifying information about a GPUAdapter.
|
|
14769
|
+
* Available only in secure contexts.
|
|
14770
|
+
*
|
|
14771
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUAdapterInfo)
|
|
14772
|
+
*/
|
|
14773
|
+
interface GPUAdapterInfo {
|
|
14774
|
+
/**
|
|
14775
|
+
* The **`architecture`** read-only property of the GPUAdapterInfo interface returns the name of the family or class of GPUs the adapter belongs to, or an empty string if it is not available.
|
|
14776
|
+
*
|
|
14777
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUAdapterInfo/architecture)
|
|
14778
|
+
*/
|
|
14779
|
+
readonly architecture: string;
|
|
14780
|
+
/**
|
|
14781
|
+
* The **`description`** read-only property of the GPUAdapterInfo interface returns a human-readable string describing the adapter, or an empty string if it is not available.
|
|
14782
|
+
*
|
|
14783
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUAdapterInfo/description)
|
|
14784
|
+
*/
|
|
14785
|
+
readonly description: string;
|
|
14786
|
+
/**
|
|
14787
|
+
* The **`device`** read-only property of the GPUAdapterInfo interface returns a vendor-specific identifier for the adapter, or an empty string if it is not available.
|
|
14788
|
+
*
|
|
14789
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUAdapterInfo/device)
|
|
14790
|
+
*/
|
|
14791
|
+
readonly device: string;
|
|
14792
|
+
/**
|
|
14793
|
+
* The **`isFallbackAdapter`** read-only property of the GPUAdapterInfo interface returns true if the adapter is a fallback adapter, and false if not.
|
|
14794
|
+
*
|
|
14795
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUAdapterInfo/isFallbackAdapter)
|
|
14796
|
+
*/
|
|
14797
|
+
readonly isFallbackAdapter: boolean;
|
|
14798
|
+
/**
|
|
14799
|
+
* The **`subgroupMaxSize`** read-only property of the GPUAdapterInfo interface returns the maximum supported subgroup size for the GPUAdapter. This can be used along with the subgroups feature.
|
|
14800
|
+
*
|
|
14801
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUAdapterInfo/subgroupMaxSize)
|
|
14802
|
+
*/
|
|
14803
|
+
readonly subgroupMaxSize: number;
|
|
14804
|
+
/**
|
|
14805
|
+
* The **`subgroupMinSize`** read-only property of the GPUAdapterInfo interface returns the minimum supported subgroup size for the GPUAdapter. This can be used along with the subgroups feature.
|
|
14806
|
+
*
|
|
14807
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUAdapterInfo/subgroupMinSize)
|
|
14808
|
+
*/
|
|
14809
|
+
readonly subgroupMinSize: number;
|
|
14810
|
+
/**
|
|
14811
|
+
* The **`vendor`** read-only property of the GPUAdapterInfo interface returns the name of the adapter vendor, or an empty string if it is not available.
|
|
14812
|
+
*
|
|
14813
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUAdapterInfo/vendor)
|
|
14814
|
+
*/
|
|
14815
|
+
readonly vendor: string;
|
|
14816
|
+
}
|
|
14817
|
+
|
|
14818
|
+
declare var GPUAdapterInfo: {
|
|
14819
|
+
prototype: GPUAdapterInfo;
|
|
14820
|
+
new(): GPUAdapterInfo;
|
|
14821
|
+
};
|
|
14822
|
+
|
|
14767
14823
|
/**
|
|
14768
14824
|
* The **`GPUBindGroup`** interface of the WebGPU API is based on a GPUBindGroupLayout and defines a set of resources to be bound together in a group and how those resources are used in shader stages.
|
|
14769
14825
|
* Available only in secure contexts.
|
|
@@ -16853,13 +16909,13 @@ interface HTMLDialogElement extends HTMLElement {
|
|
|
16853
16909
|
*/
|
|
16854
16910
|
requestClose(returnValue?: string): void;
|
|
16855
16911
|
/**
|
|
16856
|
-
* The **`show()`** method of the HTMLDialogElement interface displays the dialog
|
|
16912
|
+
* The **`show()`** method of the HTMLDialogElement interface displays the dialog as a non-modal dialog.
|
|
16857
16913
|
*
|
|
16858
16914
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDialogElement/show)
|
|
16859
16915
|
*/
|
|
16860
16916
|
show(): void;
|
|
16861
16917
|
/**
|
|
16862
|
-
* The **`showModal()`** method of the HTMLDialogElement interface displays the dialog as a modal, over the top of any other dialogs that might be
|
|
16918
|
+
* The **`showModal()`** method of the HTMLDialogElement interface displays the dialog as a modal dialog, over the top of any other dialogs or elements that might be visible.
|
|
16863
16919
|
*
|
|
16864
16920
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDialogElement/showModal)
|
|
16865
16921
|
*/
|
|
@@ -24271,13 +24327,13 @@ interface MouseEvent extends UIEvent {
|
|
|
24271
24327
|
*/
|
|
24272
24328
|
readonly metaKey: boolean;
|
|
24273
24329
|
/**
|
|
24274
|
-
* The **`movementX`** read-only property of the MouseEvent interface provides the difference in the X coordinate of the mouse pointer between the given event and the previous
|
|
24330
|
+
* The **`movementX`** read-only property of the MouseEvent interface provides the difference in the X coordinate of the mouse (or pointer) between the given move event and the previous move event of the same type.
|
|
24275
24331
|
*
|
|
24276
24332
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MouseEvent/movementX)
|
|
24277
24333
|
*/
|
|
24278
24334
|
readonly movementX: number;
|
|
24279
24335
|
/**
|
|
24280
|
-
* The **`movementY`** read-only property of the MouseEvent interface provides the difference in the Y coordinate of the mouse pointer between the given event and the previous
|
|
24336
|
+
* The **`movementY`** read-only property of the MouseEvent interface provides the difference in the Y coordinate of the mouse (or pointer) between the given move event and the previous move event of the same type.
|
|
24281
24337
|
*
|
|
24282
24338
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MouseEvent/movementY)
|
|
24283
24339
|
*/
|