elk/types/index.ts

20 wiersze
382 B
TypeScript
Czysty Zwykły widok Historia

2022-11-15 15:48:23 +00: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 16:11:08 +00:00
2022-11-17 07:35:42 +00:00
export type PaginatorState = 'idle' | 'loading' | 'done' | 'error'