/** * Loro Mirror Core * A TypeScript state management library that automatically syncs application state with loro-crdt */ export * from "./schema/index.js"; export { Mirror, toNormalizedJson, type MirrorOptions, type SetStateOptions, type UpdateMetadata, type SubscriberCallback, type InferContainerOptions, type RootInitialValue, UpdateSource, } from "./core/index.js"; import * as schema from "./schema/index.js"; import * as core from "./core/index.js"; type Combined = typeof schema & typeof core; declare const loroMirror: Combined; export default loroMirror; //# sourceMappingURL=index.d.ts.map