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;
2017-06-12 20:12:23 +00:00
type ABuf = Array<number> | Uint8Array | Buffer;
2015-05-06 21:47:18 +00:00
type CRC32TableType = Array<number> | Int32Array;
*/