1
0
Fork 1
mirror of https://github.com/elk-zone/elk.git synced 2024-07-22 06:06:48 +01:00
elk/types/index.ts
2022-11-17 15:35:42 +08:00

20 lines
382 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
}
export type PaginatorState = 'idle' | 'loading' | 'done' | 'error'