@types/serviceworker 0.0.181 → 0.0.182
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.182 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fserviceworker%400.0.182.
|
package/index.d.ts
CHANGED
|
@@ -4210,6 +4210,62 @@ declare var FormData: {
|
|
|
4210
4210
|
new(): FormData;
|
|
4211
4211
|
};
|
|
4212
4212
|
|
|
4213
|
+
/**
|
|
4214
|
+
* The **`GPUAdapterInfo`** interface of the WebGPU API contains identifying information about a GPUAdapter.
|
|
4215
|
+
* Available only in secure contexts.
|
|
4216
|
+
*
|
|
4217
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUAdapterInfo)
|
|
4218
|
+
*/
|
|
4219
|
+
interface GPUAdapterInfo {
|
|
4220
|
+
/**
|
|
4221
|
+
* 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.
|
|
4222
|
+
*
|
|
4223
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUAdapterInfo/architecture)
|
|
4224
|
+
*/
|
|
4225
|
+
readonly architecture: string;
|
|
4226
|
+
/**
|
|
4227
|
+
* 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.
|
|
4228
|
+
*
|
|
4229
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUAdapterInfo/description)
|
|
4230
|
+
*/
|
|
4231
|
+
readonly description: string;
|
|
4232
|
+
/**
|
|
4233
|
+
* 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.
|
|
4234
|
+
*
|
|
4235
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUAdapterInfo/device)
|
|
4236
|
+
*/
|
|
4237
|
+
readonly device: string;
|
|
4238
|
+
/**
|
|
4239
|
+
* The **`isFallbackAdapter`** read-only property of the GPUAdapterInfo interface returns true if the adapter is a fallback adapter, and false if not.
|
|
4240
|
+
*
|
|
4241
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUAdapterInfo/isFallbackAdapter)
|
|
4242
|
+
*/
|
|
4243
|
+
readonly isFallbackAdapter: boolean;
|
|
4244
|
+
/**
|
|
4245
|
+
* 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.
|
|
4246
|
+
*
|
|
4247
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUAdapterInfo/subgroupMaxSize)
|
|
4248
|
+
*/
|
|
4249
|
+
readonly subgroupMaxSize: number;
|
|
4250
|
+
/**
|
|
4251
|
+
* 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.
|
|
4252
|
+
*
|
|
4253
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUAdapterInfo/subgroupMinSize)
|
|
4254
|
+
*/
|
|
4255
|
+
readonly subgroupMinSize: number;
|
|
4256
|
+
/**
|
|
4257
|
+
* 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.
|
|
4258
|
+
*
|
|
4259
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUAdapterInfo/vendor)
|
|
4260
|
+
*/
|
|
4261
|
+
readonly vendor: string;
|
|
4262
|
+
}
|
|
4263
|
+
|
|
4264
|
+
declare var GPUAdapterInfo: {
|
|
4265
|
+
prototype: GPUAdapterInfo;
|
|
4266
|
+
new(): GPUAdapterInfo;
|
|
4267
|
+
};
|
|
4268
|
+
|
|
4213
4269
|
/**
|
|
4214
4270
|
* 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.
|
|
4215
4271
|
* Available only in secure contexts.
|
package/package.json
CHANGED
package/ts5.5/index.d.ts
CHANGED
|
@@ -4207,6 +4207,62 @@ declare var FormData: {
|
|
|
4207
4207
|
new(): FormData;
|
|
4208
4208
|
};
|
|
4209
4209
|
|
|
4210
|
+
/**
|
|
4211
|
+
* The **`GPUAdapterInfo`** interface of the WebGPU API contains identifying information about a GPUAdapter.
|
|
4212
|
+
* Available only in secure contexts.
|
|
4213
|
+
*
|
|
4214
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUAdapterInfo)
|
|
4215
|
+
*/
|
|
4216
|
+
interface GPUAdapterInfo {
|
|
4217
|
+
/**
|
|
4218
|
+
* 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.
|
|
4219
|
+
*
|
|
4220
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUAdapterInfo/architecture)
|
|
4221
|
+
*/
|
|
4222
|
+
readonly architecture: string;
|
|
4223
|
+
/**
|
|
4224
|
+
* 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.
|
|
4225
|
+
*
|
|
4226
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUAdapterInfo/description)
|
|
4227
|
+
*/
|
|
4228
|
+
readonly description: string;
|
|
4229
|
+
/**
|
|
4230
|
+
* 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.
|
|
4231
|
+
*
|
|
4232
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUAdapterInfo/device)
|
|
4233
|
+
*/
|
|
4234
|
+
readonly device: string;
|
|
4235
|
+
/**
|
|
4236
|
+
* The **`isFallbackAdapter`** read-only property of the GPUAdapterInfo interface returns true if the adapter is a fallback adapter, and false if not.
|
|
4237
|
+
*
|
|
4238
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUAdapterInfo/isFallbackAdapter)
|
|
4239
|
+
*/
|
|
4240
|
+
readonly isFallbackAdapter: boolean;
|
|
4241
|
+
/**
|
|
4242
|
+
* 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.
|
|
4243
|
+
*
|
|
4244
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUAdapterInfo/subgroupMaxSize)
|
|
4245
|
+
*/
|
|
4246
|
+
readonly subgroupMaxSize: number;
|
|
4247
|
+
/**
|
|
4248
|
+
* 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.
|
|
4249
|
+
*
|
|
4250
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUAdapterInfo/subgroupMinSize)
|
|
4251
|
+
*/
|
|
4252
|
+
readonly subgroupMinSize: number;
|
|
4253
|
+
/**
|
|
4254
|
+
* 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.
|
|
4255
|
+
*
|
|
4256
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUAdapterInfo/vendor)
|
|
4257
|
+
*/
|
|
4258
|
+
readonly vendor: string;
|
|
4259
|
+
}
|
|
4260
|
+
|
|
4261
|
+
declare var GPUAdapterInfo: {
|
|
4262
|
+
prototype: GPUAdapterInfo;
|
|
4263
|
+
new(): GPUAdapterInfo;
|
|
4264
|
+
};
|
|
4265
|
+
|
|
4210
4266
|
/**
|
|
4211
4267
|
* 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.
|
|
4212
4268
|
* Available only in secure contexts.
|
package/ts5.6/index.d.ts
CHANGED
|
@@ -4207,6 +4207,62 @@ declare var FormData: {
|
|
|
4207
4207
|
new(): FormData;
|
|
4208
4208
|
};
|
|
4209
4209
|
|
|
4210
|
+
/**
|
|
4211
|
+
* The **`GPUAdapterInfo`** interface of the WebGPU API contains identifying information about a GPUAdapter.
|
|
4212
|
+
* Available only in secure contexts.
|
|
4213
|
+
*
|
|
4214
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUAdapterInfo)
|
|
4215
|
+
*/
|
|
4216
|
+
interface GPUAdapterInfo {
|
|
4217
|
+
/**
|
|
4218
|
+
* 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.
|
|
4219
|
+
*
|
|
4220
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUAdapterInfo/architecture)
|
|
4221
|
+
*/
|
|
4222
|
+
readonly architecture: string;
|
|
4223
|
+
/**
|
|
4224
|
+
* 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.
|
|
4225
|
+
*
|
|
4226
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUAdapterInfo/description)
|
|
4227
|
+
*/
|
|
4228
|
+
readonly description: string;
|
|
4229
|
+
/**
|
|
4230
|
+
* 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.
|
|
4231
|
+
*
|
|
4232
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUAdapterInfo/device)
|
|
4233
|
+
*/
|
|
4234
|
+
readonly device: string;
|
|
4235
|
+
/**
|
|
4236
|
+
* The **`isFallbackAdapter`** read-only property of the GPUAdapterInfo interface returns true if the adapter is a fallback adapter, and false if not.
|
|
4237
|
+
*
|
|
4238
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUAdapterInfo/isFallbackAdapter)
|
|
4239
|
+
*/
|
|
4240
|
+
readonly isFallbackAdapter: boolean;
|
|
4241
|
+
/**
|
|
4242
|
+
* 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.
|
|
4243
|
+
*
|
|
4244
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUAdapterInfo/subgroupMaxSize)
|
|
4245
|
+
*/
|
|
4246
|
+
readonly subgroupMaxSize: number;
|
|
4247
|
+
/**
|
|
4248
|
+
* 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.
|
|
4249
|
+
*
|
|
4250
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUAdapterInfo/subgroupMinSize)
|
|
4251
|
+
*/
|
|
4252
|
+
readonly subgroupMinSize: number;
|
|
4253
|
+
/**
|
|
4254
|
+
* 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.
|
|
4255
|
+
*
|
|
4256
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUAdapterInfo/vendor)
|
|
4257
|
+
*/
|
|
4258
|
+
readonly vendor: string;
|
|
4259
|
+
}
|
|
4260
|
+
|
|
4261
|
+
declare var GPUAdapterInfo: {
|
|
4262
|
+
prototype: GPUAdapterInfo;
|
|
4263
|
+
new(): GPUAdapterInfo;
|
|
4264
|
+
};
|
|
4265
|
+
|
|
4210
4266
|
/**
|
|
4211
4267
|
* 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.
|
|
4212
4268
|
* Available only in secure contexts.
|
package/ts5.9/index.d.ts
CHANGED
|
@@ -4207,6 +4207,62 @@ declare var FormData: {
|
|
|
4207
4207
|
new(): FormData;
|
|
4208
4208
|
};
|
|
4209
4209
|
|
|
4210
|
+
/**
|
|
4211
|
+
* The **`GPUAdapterInfo`** interface of the WebGPU API contains identifying information about a GPUAdapter.
|
|
4212
|
+
* Available only in secure contexts.
|
|
4213
|
+
*
|
|
4214
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUAdapterInfo)
|
|
4215
|
+
*/
|
|
4216
|
+
interface GPUAdapterInfo {
|
|
4217
|
+
/**
|
|
4218
|
+
* 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.
|
|
4219
|
+
*
|
|
4220
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUAdapterInfo/architecture)
|
|
4221
|
+
*/
|
|
4222
|
+
readonly architecture: string;
|
|
4223
|
+
/**
|
|
4224
|
+
* 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.
|
|
4225
|
+
*
|
|
4226
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUAdapterInfo/description)
|
|
4227
|
+
*/
|
|
4228
|
+
readonly description: string;
|
|
4229
|
+
/**
|
|
4230
|
+
* 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.
|
|
4231
|
+
*
|
|
4232
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUAdapterInfo/device)
|
|
4233
|
+
*/
|
|
4234
|
+
readonly device: string;
|
|
4235
|
+
/**
|
|
4236
|
+
* The **`isFallbackAdapter`** read-only property of the GPUAdapterInfo interface returns true if the adapter is a fallback adapter, and false if not.
|
|
4237
|
+
*
|
|
4238
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUAdapterInfo/isFallbackAdapter)
|
|
4239
|
+
*/
|
|
4240
|
+
readonly isFallbackAdapter: boolean;
|
|
4241
|
+
/**
|
|
4242
|
+
* 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.
|
|
4243
|
+
*
|
|
4244
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUAdapterInfo/subgroupMaxSize)
|
|
4245
|
+
*/
|
|
4246
|
+
readonly subgroupMaxSize: number;
|
|
4247
|
+
/**
|
|
4248
|
+
* 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.
|
|
4249
|
+
*
|
|
4250
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUAdapterInfo/subgroupMinSize)
|
|
4251
|
+
*/
|
|
4252
|
+
readonly subgroupMinSize: number;
|
|
4253
|
+
/**
|
|
4254
|
+
* 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.
|
|
4255
|
+
*
|
|
4256
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUAdapterInfo/vendor)
|
|
4257
|
+
*/
|
|
4258
|
+
readonly vendor: string;
|
|
4259
|
+
}
|
|
4260
|
+
|
|
4261
|
+
declare var GPUAdapterInfo: {
|
|
4262
|
+
prototype: GPUAdapterInfo;
|
|
4263
|
+
new(): GPUAdapterInfo;
|
|
4264
|
+
};
|
|
4265
|
+
|
|
4210
4266
|
/**
|
|
4211
4267
|
* 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.
|
|
4212
4268
|
* Available only in secure contexts.
|