From 4683f50dde7be5a385898e7c606084d47496f61e Mon Sep 17 00:00:00 2001 From: Chris Duncan Date: Thu, 21 Aug 2025 12:57:53 -0700 Subject: [PATCH] Add account as a valid data type for named data so it can be added to database. --- src/types.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/types.d.ts b/src/types.d.ts index 441d5c5..8cf9870 100644 --- a/src/types.d.ts +++ b/src/types.d.ts @@ -383,7 +383,7 @@ export type BlockInfo = { } } -export type Data = boolean | number | number[] | string | string[] | ArrayBuffer | CryptoKey | { [key: string]: Data } +export type Data = boolean | number | number[] | string | string[] | Account | ArrayBuffer | CryptoKey | { [key: string]: Data } export type NamedData = { [key: string]: T -- 2.47.3