mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-05 07:18:29 +08:00

Compression will fall back into the JS implementation if program is not built with prs-rs.
17 lines
448 B
TypeScript
17 lines
448 B
TypeScript
/**
|
|
* @file This file is needed because prs-rs is an optional module and typescript will complain if code refers to an undeclared module.
|
|
*/
|
|
|
|
declare module "prs-rs" {
|
|
/**
|
|
* @param {Uint8Array} data
|
|
* @returns {Uint8Array}
|
|
*/
|
|
export function compress(data: Uint8Array): Uint8Array;
|
|
/**
|
|
* @param {Uint8Array} data
|
|
* @returns {Uint8Array}
|
|
*/
|
|
export function decompress(data: Uint8Array): Uint8Array;
|
|
}
|