import type { Account, AccountCredentials, Attachment, CreateStatusParams, Emoji, Instance, MastoClient, Notification, PushSubscription, Status } from 'masto' import type { Ref } from 'vue' import type { MarkNonNullable, Mutable } from './utils' 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 vapidKey?: string pushSubscription?: PushSubscription } export interface ElkMasto extends MastoClient { loginTo (user?: Omit & { account?: AccountCredentials }): Promise loggedIn: Ref } export type PaginatorState = 'idle' | 'loading' | 'done' | 'error' export interface ServerInfo extends Instance { server: string timeUpdated: number customEmojis?: Record } export interface GroupedNotifications { id: string type: Exclude items: Notification[] } export interface GroupedAccountLike { account: Account favourite?: Notification reblog?: Notification } export interface GroupedLikeNotifications { id: string type: 'grouped-reblogs-and-favourites' status: Status likes: GroupedAccountLike[] } export type NotificationSlot = GroupedNotifications | GroupedLikeNotifications | Notification export type TranslateFn = ReturnType['t'] export interface Draft { editingStatus?: Status initialText?: string params: MarkNonNullable, 'status' | 'language' | 'sensitive' | 'spoilerText' | 'visibility'> attachments: Attachment[] } export type DraftMap = Record export interface BuildInfo { version: string commit: string time: number branch: string env: 'preview' | 'main' | 'dev' | 'release' } export type FontSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl' export type ColorMode = 'light' | 'dark'