Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | export type PixelDataTypedArray = | Float32Array | Int16Array | Uint16Array | Uint8Array | Int8Array | Uint8ClampedArray | Uint32Array | Int32Array; export type PixelDataTypedArrayString = | 'Float32Array' | 'Int16Array' | 'Uint16Array' | 'Uint8Array' | 'Int8Array' | 'Uint8ClampedArray' | 'Uint32Array' | 'Int32Array' // Used to not create an array object | 'none'; |