From 12be5a5338f1b8c643411c196f8b90dad12335f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=8D=C3=B1igo=20Ar=C3=A9jula=20A=C3=ADsa?= Date: Mon, 5 Dec 2022 19:08:46 +0100 Subject: [PATCH] Fix tag type I realized that tags were an array of array, if it is correct merge, if im wrong just discard --- index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.d.ts b/index.d.ts index adbc6a7..12b936b 100644 --- a/index.d.ts +++ b/index.d.ts @@ -19,7 +19,7 @@ declare type Event = { kind: EventKind, pubkey?: string, content: string, - tags: string[], + tags: string[][], created_at: number, };