degmods.com/src/types/nostr.ts

10 lines
150 B
TypeScript
Raw Normal View History

2024-08-08 16:18:37 +00:00
export interface SignedEvent {
kind: number
tags: string[][]
content: string
created_at: number
pubkey: string
id: string
sig: string
}