TeaSpeak-Client/imports/shared-app/crypto/crc32.d.ts

8 lines
179 B
TypeScript
Raw Normal View History

2021-02-20 12:55:36 -05:00
export declare class Crc32 {
private static readonly lookup;
private crc;
constructor();
update(data: ArrayBufferLike): void;
digest(radix: number): string;
}