1
0
Fork 0
mirror of https://github.com/demostf/demo.js synced 2026-06-04 00:54:14 +02:00

read string tables from packets

This commit is contained in:
Robin Appelman 2017-02-05 17:35:45 +01:00
commit 5b1b11220d
15 changed files with 235 additions and 44 deletions

5
typings/modules/snappyjs/index.d.ts vendored Normal file
View file

@ -0,0 +1,5 @@
declare module 'snappyjs' {
export function uncompress(input: Uint8Array): Uint8Array;
export function compress(input: Uint8Array): Uint8Array;
}