18 lines
314 B
TypeScript
18 lines
314 B
TypeScript
|
import type { AccountCredentials } from 'masto'
|
||
|
|
||
|
export interface AppInfo {
|
||
|
id: string
|
||
|
name: string
|
||
|
website: string | null
|
||
|
redirect_uri: string
|
||
|
client_id: string
|
||
|
client_secret: string
|
||
|
vapid_key: string
|
||
|
}
|
||
|
|
||
|
export interface UserLogin {
|
||
|
server: string
|
||
|
token: string
|
||
|
account?: AccountCredentials
|
||
|
}
|