From 3d827748429122346afd94c3bca65664ff0fce7d Mon Sep 17 00:00:00 2001 From: "alexander.akait" Date: Wed, 17 Jan 2024 15:26:13 +0300 Subject: [PATCH] chore: update types --- types/utils.d.ts | 6 ------ 1 file changed, 6 deletions(-) diff --git a/types/utils.d.ts b/types/utils.d.ts index 4a6752a..bdba07e 100644 --- a/types/utils.d.ts +++ b/types/utils.d.ts @@ -39,9 +39,3 @@ export function throttleAll(limit: number, tasks: Task[]): Promise; * @returns {function(): T} */ export function memoize(fn: (() => any) | undefined): () => T; -/** - * @template T - * @param fn {(function(): any) | undefined} - * @returns {function(): Promise} - */ -export function asyncMemoize(fn: (() => any) | undefined): () => Promise;