From 1ebbe232da1e81ad75808a9158203830f6b9d042 Mon Sep 17 00:00:00 2001 From: Vicary A Date: Tue, 20 Sep 2022 01:14:29 +0800 Subject: [PATCH] fix(cli): types for webgpu features --- cli/dts/lib.deno_webgpu.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cli/dts/lib.deno_webgpu.d.ts b/cli/dts/lib.deno_webgpu.d.ts index efcc8da4a7cfbc..32f142768813e6 100644 --- a/cli/dts/lib.deno_webgpu.d.ts +++ b/cli/dts/lib.deno_webgpu.d.ts @@ -143,8 +143,8 @@ declare class GPUDevice extends EventTarget implements GPUObjectBase { | ((this: GPUDevice, ev: GPUUncapturedErrorEvent) => any) | null; - readonly features: ReadonlyArray; - readonly limits: Record; + readonly features: GPUSupportedFeatures; + readonly limits: GPUSupportedLimits; readonly queue: GPUQueue; destroy(): undefined;