From ec198468f1438bfbb8d92e14c86e1009f1e1b1bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samy=20Pess=C3=A9?= Date: Tue, 26 Mar 2024 11:09:52 +0100 Subject: [PATCH] Format --- src/lib/async.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/async.ts b/src/lib/async.ts index 5b76210cc..e99cb26f7 100644 --- a/src/lib/async.ts +++ b/src/lib/async.ts @@ -386,7 +386,7 @@ export type AsyncMutexFunction = ((fn: () => Promise) => Promise) & { */ runBlocking: ( fn: () => Promise, - options?: MutexOperationOptions + options?: MutexOperationOptions, ) => Promise; };