mirror of
https://github.com/demostf/demo.js
synced 2026-06-04 09:04:13 +02:00
5 lines
149 B
TypeScript
5 lines
149 B
TypeScript
declare module 'snappyjs' {
|
|
export function uncompress(input: Uint8Array): Uint8Array;
|
|
|
|
export function compress(input: Uint8Array): Uint8Array;
|
|
}
|