UNPKG

@grindife/supamelon

Version:

Combination of supabase and watermelondb

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