UNPKG

rhine-var

Version:

Variables that support multi-user collaboration and persistence, making collaboration and variable operations as simple as possible, with strict and well-defined type hints.

10 lines 363 B
import { WebsocketProvider } from "y-websocket"; import Connector from "../connector.abstract"; export default class WebsocketConnector extends Connector { name: string; url: string; provider: WebsocketProvider | null; connect(text: string): Promise<void>; disconnect(): Promise<void>; } //# sourceMappingURL=websocket-connector.class.d.ts.map