dmp.d.ts 388 B

12345678
  1. import type { ChangeObject } from '../types.js';
  2. type DmpOperation = 1 | 0 | -1;
  3. /**
  4. * converts a list of change objects to the format returned by Google's [diff-match-patch](https://github.com/google/diff-match-patch) library
  5. */
  6. export declare function convertChangesToDMP<ValueT>(changes: ChangeObject<ValueT>[]): [DmpOperation, ValueT][];
  7. export {};
  8. //# sourceMappingURL=dmp.d.ts.map