refactor: inline hashtag posts

This commit is contained in:
2023-11-14 10:38:02 +00:00
parent de1b982e93
commit f2a41cb474
7 changed files with 79 additions and 109 deletions

View File

@ -14,7 +14,12 @@ export interface TaggedNostrEvent extends NostrEvent {
/**
* A list of relays this event was seen on
*/
relays: string[];
relays: Array<string>;
/**
* Additional context
*/
context?: never;
}
/**