UNPKG

lexical-vue

Version:

An extensible Vue 3 web text-editor based on Lexical.

11 lines (10 loc) 305 B
import type { Ref } from 'vue'; import type { Doc } from 'yjs'; export interface CollaborationContextType { clientID: number; color: string; isCollabActive: boolean; name: string; yjsDocMap: Map<string, Doc>; } export declare const collaborationContext: Ref<CollaborationContextType>;