1
0
elk/types/index.ts

32 lines
636 B
TypeScript
Raw Normal View History

2022-11-30 09:47:54 +09:00
import type { AccountCredentials, Emoji, Instance, Notification } from 'masto'
2022-11-16 00:48:23 +09: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-30 05:51:52 +09:00
token?: string
2022-11-25 00:48:52 +09:00
account: AccountCredentials
2022-11-16 00:48:23 +09:00
}
2022-11-17 01:11:08 +09:00
2022-11-17 16:35:42 +09:00
export type PaginatorState = 'idle' | 'loading' | 'done' | 'error'
2022-11-21 15:55:31 +09:00
export interface ServerInfo extends Instance {
server: string
timeUpdated: number
customEmojis?: Record<string, Emoji>
}
2022-11-30 09:47:54 +09:00
export interface GroupedNotifications {
id: string
type: string
items: Notification[]
}