Skip to content

Commit

Permalink
fix(cli): types for webgpu features
Browse files Browse the repository at this point in the history
  • Loading branch information
vicary committed Sep 19, 2022
1 parent e0ab43d commit 1ebbe23
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cli/dts/lib.deno_webgpu.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -143,8 +143,8 @@ declare class GPUDevice extends EventTarget implements GPUObjectBase {
| ((this: GPUDevice, ev: GPUUncapturedErrorEvent) => any)
| null;

readonly features: ReadonlyArray<GPUFeatureName>;
readonly limits: Record<string, number>;
readonly features: GPUSupportedFeatures;
readonly limits: GPUSupportedLimits;
readonly queue: GPUQueue;

destroy(): undefined;
Expand Down

0 comments on commit 1ebbe23

Please sign in to comment.