2022-11-30 01:47:54 +01:00
|
|
|
import type { AccountCredentials, Emoji, Instance, Notification } 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
|
2022-11-29 21:51:52 +01:00
|
|
|
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>
|
|
|
|
}
|
2022-11-30 01:47:54 +01:00
|
|
|
|
|
|
|
export interface GroupedNotifications {
|
|
|
|
id: string
|
|
|
|
type: string
|
|
|
|
items: Notification[]
|
|
|
|
}
|