import type { ValueOf } from "@/types/utils" export const NAV_TAB = { DASHBOARD: "dashboard", GALLERY: "gallery", HOST: "host", PLUGINS: "plugins", SETTINGS: "settings", NOTIFICATIONS: "notifications", } as const export type NavTab = ValueOf export const LINK_FORMAT = { MARKDOWN: "Markdown", HTML: "HTML", URL: "URL", UBB: "UBB", CUSTOM: "Custom", } as const export type LinkFormat = ValueOf export const RECENT_UPLOAD_TYPE = { IMAGE: "image", FILE: "file", } as const export type RecentUploadType = ValueOf export type RecentUpload = { id: number | string name: string time: string type: RecentUploadType subtitle?: string thumbnailUrl?: string }