UNPKG

431 BTypeScriptView Raw
1import { BiTypedMethodDecorator1 } from './factory';
2import { MemoizeConfig } from './shared';
3/**
4 * Memoizes a function on the prototype instead of the instance. All instances of the class use the same memoize cache.
5 * @param {Function} [resolver] Optional resolver
6 */
7export declare const MemoizeAll: BiTypedMethodDecorator1<Function | MemoizeConfig<any, any>>;
8export { MemoizeAll as memoizeAll };
9export default MemoizeAll;