forked from meissa/ModeratorElection
8 lines
258 B
TypeScript
8 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;
|
|
}
|