33 lines
514 B
TypeScript
33 lines
514 B
TypeScript
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
|
|
siteUrl?: string
|
|
}
|
|
|
|
export type Networks = Record<string, NetworkConfig>
|