1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-21 15:04:11 -05:00

fix(cli/dts/webgpu): make GPUBlendComponent properties optional (#13574)

This commit is contained in:
Leo Kettmeir 2022-02-02 14:38:01 +01:00 committed by Bartek Iwańczuk
parent 9d714579b2
commit 6ebb3e5623

View file

@ -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 =