elk/types/index.ts

20 wiersze
373 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 = 'ready' | 'loading' | 'done'