Merge pull request #583 from sarthak-saxena/add-support-for-uint8clamedarray

Add support for type Uint8ClampedArray in KernelVariable
This commit is contained in:
Robert Plummer 2020-03-19 12:47:49 -04:00 committed by GitHub
commit c27dae6f1d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

3
src/index.d.ts vendored
View File

@ -407,6 +407,7 @@ export type KernelVariable =
| Uint8Array
| Uint16Array
| Uint32Array
| Uint8ClampedArray
| KernelOutput;
export type ThreadFunctionResult
@ -665,4 +666,4 @@ export interface IDeclaration {
valueType: string;
dependencies: any;
isSafe: boolean;
}
}