1
0
Fork 0
mirror of https://github.com/elk-zone/elk.git synced 2025-03-16 05:03:28 +03:00
elk/types/index.ts
2022-11-17 15:35:42 +08:00

19 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'