From: Chris Duncan Date: Thu, 21 Aug 2025 19:57:53 +0000 (-0700) Subject: Add account as a valid data type for named data so it can be added to database. X-Git-Tag: v0.10.5~41^2~22 X-Git-Url: https://git.codecow.com/?a=commitdiff_plain;h=4683f50dde7be5a385898e7c606084d47496f61e;p=libnemo.git Add account as a valid data type for named data so it can be added to database. --- 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