| 3 | export declare const deepClone: typeof _deepClone; |
| 4 | export declare type Operation = AddOperation<any> | RemoveOperation | ReplaceOperation<any> | MoveOperation | CopyOperation | TestOperation<any> | GetOperation<any>; |
| 5 | export interface Validator<T> { |
| 6 | (operation: Operation, index: number, document: T, existingPathFragment: string): void; |
| 7 | } |
| 8 | export interface OperationResult<T> { |
| 9 | removed?: any; |
| 10 | test?: boolean; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…