mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-05 15:28:29 +08:00
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;
|
||
|
}
|