degmods.com/src/types/nostr.ts

16 lines
229 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
}
export interface Addressable {
author: string
id: string
aTag: string
}