10 lines
207 B
JavaScript
10 lines
207 B
JavaScript
/*::
|
|
declare class CRC32Module {
|
|
table:CRC32TableType;
|
|
bstr(s:string, seed?:CRC32Type):CRC32Type;
|
|
buf(b:ABuf, seed?:CRC32Type):CRC32Type;
|
|
str(s:string, seed?:CRC32Type):CRC32Type;
|
|
version:string;
|
|
};
|
|
*/
|