Quasi-cosmetic: update imports (e.g. to allow jest to run)

This commit is contained in:
Tony Garnock-Jones 2023-12-18 10:31:56 +13:00
parent 1c3df03153
commit 3617582d37
2 changed files with 3 additions and 4 deletions

View File

@ -3,7 +3,7 @@
// Bags and Deltas (which are Bags where item-counts can be negative).
import { Value, Set, Dictionary, KeyedDictionary, KeyedSet } from '@preserves/core';
import { Value, KeyedDictionary, KeyedSet } from '@preserves/core';
export enum ChangeDescription {
PRESENT_TO_ABSENT = -1,

View File

@ -3,9 +3,8 @@
// Property-based "dataflow"
import { FlexSet, FlexMap, Canonicalizer, Value, is } from '@preserves/core';
import { Ref } from './actor.js';
import * as MapSet from './mapset.js';
import { FlexSet, FlexMap, Canonicalizer, is } from '@preserves/core';
import * as MapSet from './mapset';
export interface ObservingGraph<ObjectId> {
recordObservation(objectId: ObjectId): void;