Files
rrweb/typings/record/collection.d.ts
2019-02-17 15:54:14 +08:00

5 lines
292 B
TypeScript

import { removedNodeMutation } from '../types';
export declare function deepDelete(addsSet: Set<Node>, n: Node): void;
export declare function isParentRemoved(removes: removedNodeMutation[], n: Node): boolean;
export declare function isParentDropped(droppedSet: Set<Node>, n: Node): boolean;