UNPKG

@muban/muban

Version:

Writing components for server-rendered HTML

8 lines (7 loc) 263 B
/** * Memo function which does one thing * - only uses first parameter as the cache-key * - only accepts objects as cache-key (because of the `WeakMap`) * @param fn */ export declare function simpleMemo<T extends (...rest: Array<any>) => unknown>(fn: T): T;