mirror of
https://github.com/pezkuwichain/pezkuwi-common.git
synced 2026-04-30 02:37:58 +00:00
chore: update to version 14.0.11 and align website URLs
This commit is contained in:
Vendored
+14
@@ -0,0 +1,14 @@
|
||||
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<T, K, S>(result: Record<string, T> | AnyFn, item: K, creator: (item: K, index: number, self: S) => T, getName?: (item: K, index: number) => string, index?: number): void;
|
||||
/**
|
||||
* @name lazyMethods
|
||||
* @description
|
||||
* Creates lazy, on-demand getters for the specific values.
|
||||
*/
|
||||
export declare function lazyMethods<T, K, S>(result: Record<string, T>, items: readonly K[], creator: (item: K, index: number, self: S) => T, getName?: (item: K, index: number) => string): Record<string, T>;
|
||||
export {};
|
||||
Reference in New Issue
Block a user