1
0
Fork 0
mirror of https://github.com/demostf/demo.js synced 2026-06-04 09:04:13 +02:00
demo.js/typings/modules/snappyjs/index.d.ts

5 lines
149 B
TypeScript

declare module 'snappyjs' {
export function uncompress(input: Uint8Array): Uint8Array;
export function compress(input: Uint8Array): Uint8Array;
}