diff options
author | Leo Kettmeir <crowlkats@toaxl.com> | 2022-02-02 14:38:01 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-02 14:38:01 +0100 |
commit | 3a5ddeb03f73b3c4c25c0f6aa5bd1ef84b955de9 (patch) | |
tree | 971e7f942a28498fb2ab7717a8dcce8f00ccec67 /cli | |
parent | 26f5c223df26962f19ccc957d0507facc09c55c5 (diff) |
fix(cli/dts/webgpu): make GPUBlendComponent properties optional (#13574)
Diffstat (limited to 'cli')
-rw-r--r-- | cli/dts/lib.deno_webgpu.d.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cli/dts/lib.deno_webgpu.d.ts b/cli/dts/lib.deno_webgpu.d.ts index 1337b3f5e..616df6bca 100644 --- a/cli/dts/lib.deno_webgpu.d.ts +++ b/cli/dts/lib.deno_webgpu.d.ts @@ -596,9 +596,9 @@ declare class GPUColorWrite { } declare interface GPUBlendComponent { - operation: GPUBlendOperation; - srcFactor: GPUBlendFactor; - dstFactor: GPUBlendFactor; + operation?: GPUBlendOperation; + srcFactor?: GPUBlendFactor; + dstFactor?: GPUBlendFactor; } declare type GPUBlendFactor = |