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 GitHub
parent 26f5c223df
commit 3a5ddeb03f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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 =