This commit is contained in:
2026-01-15 18:36:41 +09:00
commit 162072d980
24 changed files with 2153 additions and 0 deletions

31
src/types.ts Normal file
View File

@@ -0,0 +1,31 @@
export interface Profile {
did: string
handle: string
displayName?: string
description?: string
avatar?: string
banner?: string
}
export interface BlogPost {
uri: string
cid: string
title: string
content: string
createdAt: string
}
export interface NetworkConfig {
plc: string
bsky: string
}
export interface AppConfig {
title: string
handle: string
collection: string
network: string
color?: string
}
export type Networks = Record<string, NetworkConfig>