phantasmal-world/typedefs/prs-rs.d.ts
jtuu 6cb6be92d7 Made prs-rs an optional module.
Compression will fall back into the JS implementation if program is not built with prs-rs.
2020-06-01 01:17:26 +03:00

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;
}