weak-maps.d.ts 540 B

123456789
  1. import { Editor, Path, PathRef, PointRef, RangeRef } from '..';
  2. export declare const DIRTY_PATHS: WeakMap<Editor, Path[]>;
  3. export declare const DIRTY_PATH_KEYS: WeakMap<Editor, Set<string>>;
  4. export declare const FLUSHING: WeakMap<Editor, boolean>;
  5. export declare const NORMALIZING: WeakMap<Editor, boolean>;
  6. export declare const PATH_REFS: WeakMap<Editor, Set<PathRef>>;
  7. export declare const POINT_REFS: WeakMap<Editor, Set<PointRef>>;
  8. export declare const RANGE_REFS: WeakMap<Editor, Set<RangeRef>>;
  9. //# sourceMappingURL=weak-maps.d.ts.map