| 1234567891011 | // @flow// These types are not as powerful as the TypeScript types, but they get the job doneexport type EqualityFn = (newArgs: mixed[], lastArgs: mixed[]) => boolean;// default exportdeclare export default function memoizeOne<ResultFn: (...any[]) => mixed>(  fn: ResultFn,  isEqual?: EqualityFn,): ResultFn & { clear: () => void };
 |