package.dist.declarations.src.index.d.ts Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of weak-memoize Show documentation
Show all versions of weak-memoize Show documentation
A memoization function that uses a WeakMap
The newest version!
declare let weakMemoize: (func: (arg: Arg) => Return) => (arg: Arg) => Return;
export default weakMemoize;