// @flow import { $Exact } from '../../../types' export type ArrayDiff = $Exact<{ added: T[]; removed: T[] }> export default function (previousList: T[], nextList: T[]): ArrayDiff