node_modules ignore

This commit is contained in:
2025-05-08 23:43:47 +02:00
parent e19d52f172
commit 4574544c9f
65041 changed files with 10593536 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
type Func = (...args: any[]) => any;
export interface Cache<K, V> {
create: CacheCreateFunc<K, V>;
}
interface CacheCreateFunc<K, V> {
(): DefaultCache<K, V>;
}
interface DefaultCache<K, V> {
get(key: K): V | undefined;
set(key: K, value: V | undefined): void;
}
export type Serializer = (args: any[]) => string;
export interface Options<F extends Func> {
cache?: Cache<string, ReturnType<F>>;
serializer?: Serializer;
strategy?: MemoizeFunc<F>;
}
export interface ResolvedOptions<F extends Func> {
cache: Cache<string, ReturnType<F>>;
serializer: Serializer;
}
export interface MemoizeFunc<F extends Func> {
(fn: F, options?: Options<F>): F;
}
export declare function memoize<F extends Func>(fn: F, options?: Options<F>): F | ((arg: any) => any);
export type StrategyFn = <F extends Func>(this: unknown, fn: F, cache: DefaultCache<string, ReturnType<F>>, serializer: Serializer, arg: any) => any;
export interface Strategies<F extends Func> {
variadic: MemoizeFunc<F>;
monadic: MemoizeFunc<F>;
}
export declare const strategies: Strategies<Func>;
export {};