Work on login screen

This commit is contained in:
Jon Staab
2024-08-09 16:22:09 -07:00
parent 51cfa5f0e8
commit 71d819edc7
32 changed files with 698 additions and 534 deletions
+20
View File
@@ -0,0 +1,20 @@
import type {Nip46Handler} from "@welshman/signer"
export type Session = {
method: string
pubkey: string
secret?: string
handler?: Nip46Handler
}
export type RelayInfo = {
fetched_at: number
}
export type HandleInfo = {
pubkey: string
nip05: string
nip46: string[]
relays: string[]
fetched_at: number
}