phantasmal-world/typedefs/prs-rs.d.ts

17 lines
448 B
TypeScript
Raw Normal View History

/**
* @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;
}