UNPKG

@runejs/common

Version:

Common logging, networking, compression, and other miscellaneous functionality for RuneJS.

8 lines (7 loc) 279 B
/// <reference types="node" /> import { ByteBuffer } from '../buffer'; export declare class Crc32 { static crcLookupTable: number[]; static update(offset: number, size: number, data: ByteBuffer | Buffer | Uint8Array | number[]): number; static init(): void; }