From 3e3b161fd4b0663486f9415d214678ebe02639c7 Mon Sep 17 00:00:00 2001 From: Brett McStotts Date: Mon, 25 Sep 2023 10:16:10 -0400 Subject: [PATCH] updated StorageAccessCallbackData hasAccess to boolean. --- src/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.d.ts b/src/index.d.ts index 5fd01a8..fd22245 100644 --- a/src/index.d.ts +++ b/src/index.d.ts @@ -95,7 +95,7 @@ declare namespace connect { function hitch any>(scope: object, method: T): T; type StorageAcccessCallbackData = { - hasAccess?: boolan; + hasAccess?: boolean; [key: string]: any; }