import type { Doc } from "yjs"; export interface Transformer { fromYdoc: (document: Doc, fieldName?: string | Array) => any; toYdoc: (document: any, fieldName: string) => Doc; }