elk/types/index.ts

20 lines
373 B
TypeScript
Raw Normal View History

2022-11-15 16:48:23 +01:00
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
}
2022-11-16 17:11:08 +01:00
export type PaginatorState = 'ready' | 'loading' | 'done'