/** * @public */ export interface IArrayUpdate { add: T[]; del: T[]; same: T[]; } /** * Compare two array, returns the difference from `before` to `after` * @public */ export declare function arrayDiff(_before: readonly T[], after: readonly T[]): { add: T[]; del: T[]; same: T[]; }; //# sourceMappingURL=diff.d.ts.map