declare type AnyFn = (...args: unknown[]) => unknown; /** * @name lazyMethod * @description * Creates a lazy, on-demand getter for the specific value. Upon get the value will be evaluated. */ export declare function lazyMethod(result: Record | AnyFn, item: K, creator: (d: K) => T, getName?: (d: K) => string): void; /** * @name lazyMethods * @description * Creates lazy, on-demand getters for the specific values. */ export declare function lazyMethods(result: Record, items: K[], creator: (v: K) => T, getName?: (m: K) => string): Record; export {};