UNPKG

yjs-server

Version:

An extensible websocket server for the Yjs collaborative editing framework. Compatible with y-websocket.

16 lines (13 loc) 281 B
export enum MessageType { Sync = 0, Awareness = 1, } export const CONNECTING = 0 export const OPEN = 1 export const CLOSING = 2 export const CLOSED = 3 export const invariant = (condition: boolean, message: string) => { if (!condition) { throw new Error(message) } }