UNPKG

@runejs/common

Version:

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

6 lines (5 loc) 201 B
import { ByteBuffer } from '../buffer'; export declare class Bzip2 { static compress(rawFileData: ByteBuffer): ByteBuffer; static decompress(compressedFileData: ByteBuffer): ByteBuffer; }