js-crc32/bits/10_types.js

6 lines
132 B
JavaScript
Raw Normal View History

2015-05-06 21:47:18 +00:00
/*::
type CRC32Type = number;
2018-01-17 21:27:59 +00:00
type ABuf = Array<number> | Buffer | Uint8Array;
2015-05-06 21:47:18 +00:00
type CRC32TableType = Array<number> | Int32Array;
*/