Skip to content

Commit

Permalink
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/json-crdt/model/Model.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import * as operations from '../../json-crdt-patch/operations';
import * as clock from '../../json-crdt-patch/clock';
import {ConNode} from '../nodes/con/ConNode';
import {ConNode} from '../nodes/const/ConNode';
import {encoder, decoder} from '../codec/structural/binary/shared';
import {JsonCrdtPatchOperation, Patch} from '../../json-crdt-patch/Patch';
import {ModelApi} from './api/ModelApi';
File renamed without changes.
4 changes: 2 additions & 2 deletions src/json-crdt/nodes/nodes.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type {ITimestampStruct} from '../../json-crdt-patch/clock';
import type {ConNode} from './con/ConNode';
import type {ConNode} from './const/ConNode';
import type {ValNode} from './val/ValNode';
import type {VecNode} from './vec/VecNode';
import type {JsonNode} from './types';
@@ -19,7 +19,7 @@ export namespace n {
export type arr<Element extends JsonNode = JsonNode> = ArrNode<Element>;
}

export {ConNode} from './con/ConNode';
export {ConNode} from './const/ConNode';
export {ValNode} from './val/ValNode';
export {RootNode} from './root/RootNode';
export {VecNode} from './vec/VecNode';
2 changes: 1 addition & 1 deletion src/json-crdt/nodes/vec/VecNode.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {ConNode} from '../con/ConNode';
import {ConNode} from '../const/ConNode';
import {CRDT_CONSTANTS} from '../../constants';
import {printTree} from '../../../util/print/printTree';
import {compare, ITimestampStruct, toDisplayString} from '../../../json-crdt-patch/clock';

0 comments on commit b508910

Please sign in to comment.