UNPKG

recoder-code

Version:

Complete AI-powered development platform with ML model training, plugin registry, real-time collaboration, monitoring, infrastructure automation, and enterprise deployment capabilities

20 lines 624 B
/** * This is an abstract interface that all Connectors should implement to keep them interchangeable. * * @note This interface is experimental and it is not advised to actually inherit this class. * It just serves as typing information. * * @extends {ObservableV2<any>} */ export class AbstractConnector extends ObservableV2<any> { /** * @param {Doc} ydoc * @param {any} awareness */ constructor(ydoc: Doc, awareness: any); doc: Doc; awareness: any; } import { ObservableV2 } from "lib0/observable"; import { Doc } from "./Doc.js"; //# sourceMappingURL=AbstractConnector.d.ts.map