Skip to content

Commit

Permalink
chore: update types
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander-akait committed Jan 17, 2024
1 parent ea8d000 commit 3d82774
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions types/utils.d.ts
Expand Up @@ -39,9 +39,3 @@ export function throttleAll<T>(limit: number, tasks: Task<T>[]): Promise<T[]>;
* @returns {function(): T}
*/
export function memoize<T>(fn: (() => any) | undefined): () => T;
/**
* @template T
* @param fn {(function(): any) | undefined}
* @returns {function(): Promise<T>}
*/
export function asyncMemoize<T>(fn: (() => any) | undefined): () => Promise<T>;

0 comments on commit 3d82774

Please sign in to comment.