@types/sharedworker 0.0.210 → 0.0.211
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 +56 -0
- package/package.json +1 -1
- package/ts5.5/index.d.ts +56 -0
- package/ts5.6/index.d.ts +56 -0
- package/ts5.9/index.d.ts +56 -0
package/README.md
CHANGED
|
@@ -28,4 +28,4 @@ This project does not respect semantic versioning as almost every change could p
|
|
|
28
28
|
|
|
29
29
|
## Deploy Metadata
|
|
30
30
|
|
|
31
|
-
You can read what changed in version 0.0.
|
|
31
|
+
You can read what changed in version 0.0.211 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fsharedworker%400.0.211.
|
package/index.d.ts
CHANGED
|
@@ -3893,6 +3893,62 @@ declare var FormData: {
|
|
|
3893
3893
|
new(): FormData;
|
|
3894
3894
|
};
|
|
3895
3895
|
|
|
3896
|
+
/**
|
|
3897
|
+
* The **`GPUAdapterInfo`** interface of the WebGPU API contains identifying information about a GPUAdapter.
|
|
3898
|
+
* Available only in secure contexts.
|
|
3899
|
+
*
|
|
3900
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUAdapterInfo)
|
|
3901
|
+
*/
|
|
3902
|
+
interface GPUAdapterInfo {
|
|
3903
|
+
/**
|
|
3904
|
+
* 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.
|
|
3905
|
+
*
|
|
3906
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUAdapterInfo/architecture)
|
|
3907
|
+
*/
|
|
3908
|
+
readonly architecture: string;
|
|
3909
|
+
/**
|
|
3910
|
+
* 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.
|
|
3911
|
+
*
|
|
3912
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUAdapterInfo/description)
|
|
3913
|
+
*/
|
|
3914
|
+
readonly description: string;
|
|
3915
|
+
/**
|
|
3916
|
+
* 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.
|
|
3917
|
+
*
|
|
3918
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUAdapterInfo/device)
|
|
3919
|
+
*/
|
|
3920
|
+
readonly device: string;
|
|
3921
|
+
/**
|
|
3922
|
+
* The **`isFallbackAdapter`** read-only property of the GPUAdapterInfo interface returns true if the adapter is a fallback adapter, and false if not.
|
|
3923
|
+
*
|
|
3924
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUAdapterInfo/isFallbackAdapter)
|
|
3925
|
+
*/
|
|
3926
|
+
readonly isFallbackAdapter: boolean;
|
|
3927
|
+
/**
|
|
3928
|
+
* 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.
|
|
3929
|
+
*
|
|
3930
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUAdapterInfo/subgroupMaxSize)
|
|
3931
|
+
*/
|
|
3932
|
+
readonly subgroupMaxSize: number;
|
|
3933
|
+
/**
|
|
3934
|
+
* 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.
|
|
3935
|
+
*
|
|
3936
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUAdapterInfo/subgroupMinSize)
|
|
3937
|
+
*/
|
|
3938
|
+
readonly subgroupMinSize: number;
|
|
3939
|
+
/**
|
|
3940
|
+
* 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.
|
|
3941
|
+
*
|
|
3942
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUAdapterInfo/vendor)
|
|
3943
|
+
*/
|
|
3944
|
+
readonly vendor: string;
|
|
3945
|
+
}
|
|
3946
|
+
|
|
3947
|
+
declare var GPUAdapterInfo: {
|
|
3948
|
+
prototype: GPUAdapterInfo;
|
|
3949
|
+
new(): GPUAdapterInfo;
|
|
3950
|
+
};
|
|
3951
|
+
|
|
3896
3952
|
/**
|
|
3897
3953
|
* 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.
|
|
3898
3954
|
* Available only in secure contexts.
|
package/package.json
CHANGED
package/ts5.5/index.d.ts
CHANGED
|
@@ -3890,6 +3890,62 @@ declare var FormData: {
|
|
|
3890
3890
|
new(): FormData;
|
|
3891
3891
|
};
|
|
3892
3892
|
|
|
3893
|
+
/**
|
|
3894
|
+
* The **`GPUAdapterInfo`** interface of the WebGPU API contains identifying information about a GPUAdapter.
|
|
3895
|
+
* Available only in secure contexts.
|
|
3896
|
+
*
|
|
3897
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUAdapterInfo)
|
|
3898
|
+
*/
|
|
3899
|
+
interface GPUAdapterInfo {
|
|
3900
|
+
/**
|
|
3901
|
+
* 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.
|
|
3902
|
+
*
|
|
3903
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUAdapterInfo/architecture)
|
|
3904
|
+
*/
|
|
3905
|
+
readonly architecture: string;
|
|
3906
|
+
/**
|
|
3907
|
+
* 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.
|
|
3908
|
+
*
|
|
3909
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUAdapterInfo/description)
|
|
3910
|
+
*/
|
|
3911
|
+
readonly description: string;
|
|
3912
|
+
/**
|
|
3913
|
+
* 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.
|
|
3914
|
+
*
|
|
3915
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUAdapterInfo/device)
|
|
3916
|
+
*/
|
|
3917
|
+
readonly device: string;
|
|
3918
|
+
/**
|
|
3919
|
+
* The **`isFallbackAdapter`** read-only property of the GPUAdapterInfo interface returns true if the adapter is a fallback adapter, and false if not.
|
|
3920
|
+
*
|
|
3921
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUAdapterInfo/isFallbackAdapter)
|
|
3922
|
+
*/
|
|
3923
|
+
readonly isFallbackAdapter: boolean;
|
|
3924
|
+
/**
|
|
3925
|
+
* 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.
|
|
3926
|
+
*
|
|
3927
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUAdapterInfo/subgroupMaxSize)
|
|
3928
|
+
*/
|
|
3929
|
+
readonly subgroupMaxSize: number;
|
|
3930
|
+
/**
|
|
3931
|
+
* 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.
|
|
3932
|
+
*
|
|
3933
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUAdapterInfo/subgroupMinSize)
|
|
3934
|
+
*/
|
|
3935
|
+
readonly subgroupMinSize: number;
|
|
3936
|
+
/**
|
|
3937
|
+
* 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.
|
|
3938
|
+
*
|
|
3939
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUAdapterInfo/vendor)
|
|
3940
|
+
*/
|
|
3941
|
+
readonly vendor: string;
|
|
3942
|
+
}
|
|
3943
|
+
|
|
3944
|
+
declare var GPUAdapterInfo: {
|
|
3945
|
+
prototype: GPUAdapterInfo;
|
|
3946
|
+
new(): GPUAdapterInfo;
|
|
3947
|
+
};
|
|
3948
|
+
|
|
3893
3949
|
/**
|
|
3894
3950
|
* 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.
|
|
3895
3951
|
* Available only in secure contexts.
|
package/ts5.6/index.d.ts
CHANGED
|
@@ -3890,6 +3890,62 @@ declare var FormData: {
|
|
|
3890
3890
|
new(): FormData;
|
|
3891
3891
|
};
|
|
3892
3892
|
|
|
3893
|
+
/**
|
|
3894
|
+
* The **`GPUAdapterInfo`** interface of the WebGPU API contains identifying information about a GPUAdapter.
|
|
3895
|
+
* Available only in secure contexts.
|
|
3896
|
+
*
|
|
3897
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUAdapterInfo)
|
|
3898
|
+
*/
|
|
3899
|
+
interface GPUAdapterInfo {
|
|
3900
|
+
/**
|
|
3901
|
+
* 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.
|
|
3902
|
+
*
|
|
3903
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUAdapterInfo/architecture)
|
|
3904
|
+
*/
|
|
3905
|
+
readonly architecture: string;
|
|
3906
|
+
/**
|
|
3907
|
+
* 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.
|
|
3908
|
+
*
|
|
3909
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUAdapterInfo/description)
|
|
3910
|
+
*/
|
|
3911
|
+
readonly description: string;
|
|
3912
|
+
/**
|
|
3913
|
+
* 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.
|
|
3914
|
+
*
|
|
3915
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUAdapterInfo/device)
|
|
3916
|
+
*/
|
|
3917
|
+
readonly device: string;
|
|
3918
|
+
/**
|
|
3919
|
+
* The **`isFallbackAdapter`** read-only property of the GPUAdapterInfo interface returns true if the adapter is a fallback adapter, and false if not.
|
|
3920
|
+
*
|
|
3921
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUAdapterInfo/isFallbackAdapter)
|
|
3922
|
+
*/
|
|
3923
|
+
readonly isFallbackAdapter: boolean;
|
|
3924
|
+
/**
|
|
3925
|
+
* 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.
|
|
3926
|
+
*
|
|
3927
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUAdapterInfo/subgroupMaxSize)
|
|
3928
|
+
*/
|
|
3929
|
+
readonly subgroupMaxSize: number;
|
|
3930
|
+
/**
|
|
3931
|
+
* 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.
|
|
3932
|
+
*
|
|
3933
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUAdapterInfo/subgroupMinSize)
|
|
3934
|
+
*/
|
|
3935
|
+
readonly subgroupMinSize: number;
|
|
3936
|
+
/**
|
|
3937
|
+
* 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.
|
|
3938
|
+
*
|
|
3939
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUAdapterInfo/vendor)
|
|
3940
|
+
*/
|
|
3941
|
+
readonly vendor: string;
|
|
3942
|
+
}
|
|
3943
|
+
|
|
3944
|
+
declare var GPUAdapterInfo: {
|
|
3945
|
+
prototype: GPUAdapterInfo;
|
|
3946
|
+
new(): GPUAdapterInfo;
|
|
3947
|
+
};
|
|
3948
|
+
|
|
3893
3949
|
/**
|
|
3894
3950
|
* 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.
|
|
3895
3951
|
* Available only in secure contexts.
|
package/ts5.9/index.d.ts
CHANGED
|
@@ -3890,6 +3890,62 @@ declare var FormData: {
|
|
|
3890
3890
|
new(): FormData;
|
|
3891
3891
|
};
|
|
3892
3892
|
|
|
3893
|
+
/**
|
|
3894
|
+
* The **`GPUAdapterInfo`** interface of the WebGPU API contains identifying information about a GPUAdapter.
|
|
3895
|
+
* Available only in secure contexts.
|
|
3896
|
+
*
|
|
3897
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUAdapterInfo)
|
|
3898
|
+
*/
|
|
3899
|
+
interface GPUAdapterInfo {
|
|
3900
|
+
/**
|
|
3901
|
+
* 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.
|
|
3902
|
+
*
|
|
3903
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUAdapterInfo/architecture)
|
|
3904
|
+
*/
|
|
3905
|
+
readonly architecture: string;
|
|
3906
|
+
/**
|
|
3907
|
+
* 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.
|
|
3908
|
+
*
|
|
3909
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUAdapterInfo/description)
|
|
3910
|
+
*/
|
|
3911
|
+
readonly description: string;
|
|
3912
|
+
/**
|
|
3913
|
+
* 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.
|
|
3914
|
+
*
|
|
3915
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUAdapterInfo/device)
|
|
3916
|
+
*/
|
|
3917
|
+
readonly device: string;
|
|
3918
|
+
/**
|
|
3919
|
+
* The **`isFallbackAdapter`** read-only property of the GPUAdapterInfo interface returns true if the adapter is a fallback adapter, and false if not.
|
|
3920
|
+
*
|
|
3921
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUAdapterInfo/isFallbackAdapter)
|
|
3922
|
+
*/
|
|
3923
|
+
readonly isFallbackAdapter: boolean;
|
|
3924
|
+
/**
|
|
3925
|
+
* 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.
|
|
3926
|
+
*
|
|
3927
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUAdapterInfo/subgroupMaxSize)
|
|
3928
|
+
*/
|
|
3929
|
+
readonly subgroupMaxSize: number;
|
|
3930
|
+
/**
|
|
3931
|
+
* 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.
|
|
3932
|
+
*
|
|
3933
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUAdapterInfo/subgroupMinSize)
|
|
3934
|
+
*/
|
|
3935
|
+
readonly subgroupMinSize: number;
|
|
3936
|
+
/**
|
|
3937
|
+
* 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.
|
|
3938
|
+
*
|
|
3939
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUAdapterInfo/vendor)
|
|
3940
|
+
*/
|
|
3941
|
+
readonly vendor: string;
|
|
3942
|
+
}
|
|
3943
|
+
|
|
3944
|
+
declare var GPUAdapterInfo: {
|
|
3945
|
+
prototype: GPUAdapterInfo;
|
|
3946
|
+
new(): GPUAdapterInfo;
|
|
3947
|
+
};
|
|
3948
|
+
|
|
3893
3949
|
/**
|
|
3894
3950
|
* 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.
|
|
3895
3951
|
* Available only in secure contexts.
|