forked from meissa/ModeratorElection
9 lines
258 B
TypeScript
9 lines
258 B
TypeScript
|
import { Connection } from './connection.js';
|
||
|
export declare class LiveReloadConnection extends Connection {
|
||
|
webSocket?: WebSocket;
|
||
|
constructor(url: string);
|
||
|
onReload(): void;
|
||
|
handleMessage(msg: any): void;
|
||
|
handleError(msg: any): void;
|
||
|
}
|