add npm stuff, dist/ folder

This commit is contained in:
CoolElectronics 2023-08-24 15:21:24 -04:00
parent ac3a135fff
commit 15304a80fe
No known key found for this signature in database
GPG key ID: F63593D168636C50
22 changed files with 50951 additions and 11 deletions

8
dist/client/src/DevWsTransport.d.ts vendored Normal file
View file

@ -0,0 +1,8 @@
import { Transport } from "protocol";
export declare class DevWsTransport extends Transport {
ws: WebSocket;
constructor(onopen: () => void, onclose: () => void);
onmessage(msg: MessageEvent<any>): void;
send(data: ArrayBuffer): void;
close(): void;
}