Files
collabvm-1.2.ts/cvmts/src/NetworkServer.ts

6 lines
214 B
TypeScript
Raw Normal View History

export default interface NetworkServer {
start() : void;
stop() : void;
on(event: string, listener: (...args: any[]) => void) : void;
off(event: string, listener: (...args: any[]) => void) : void;
}