8 lines
147 B
TypeScript
8 lines
147 B
TypeScript
|
export type LocalServer = {
|
||
|
id: number
|
||
|
baseURL: string
|
||
|
domain: string
|
||
|
sns: 'mastodon' | 'pleroma' | 'misskey'
|
||
|
accountId: number | null
|
||
|
}
|