Fix tag type

I realized that tags were an array of array, if it is correct merge, if im wrong just discard
This commit is contained in:
Íñigo Aréjula Aísa
2022-12-05 19:08:46 +01:00
committed by fiatjaf
parent ec805be4ab
commit 12be5a5338

2
index.d.ts vendored
View File

@@ -19,7 +19,7 @@ declare type Event = {
kind: EventKind,
pubkey?: string,
content: string,
tags: string[],
tags: string[][],
created_at: number,
};