elk/types/index.ts

26 lines
526 B
TypeScript
Raw Normal View History

2022-11-21 07:55:31 +01:00
import type { AccountCredentials, Emoji, Instance } from 'masto'
2022-11-15 16:48:23 +01:00
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
2022-11-24 16:48:52 +01:00
account: AccountCredentials
2022-11-15 16:48:23 +01:00
}
2022-11-16 17:11:08 +01:00
2022-11-17 08:35:42 +01:00
export type PaginatorState = 'idle' | 'loading' | 'done' | 'error'
2022-11-21 07:55:31 +01:00
export interface ServerInfo extends Instance {
server: string
timeUpdated: number
customEmojis?: Record<string, Emoji>
}