Refactor a few things, add policies to repository

This commit is contained in:
Jon Staab
2025-04-15 13:45:11 -07:00
parent ded668890f
commit 5785710137
3 changed files with 31 additions and 21 deletions
+3 -3
View File
@@ -10,21 +10,21 @@ export const urlIsMedia = (url: string) =>
// Copy some types from nostr-tools because I can't import them
type AddressPointer = {
export type AddressPointer = {
identifier: string
pubkey: string
kind: number
relays?: string[]
}
type EventPointer = {
export type EventPointer = {
id: string
relays?: string[]
author?: string
kind?: number
}
type ProfilePointer = {
export type ProfilePointer = {
pubkey: string
relays?: string[]
}