2025-09-29 16:33:15 +08:00
|
|
|
/// <reference types="vite/client" />
|
2025-12-05 16:18:01 +08:00
|
|
|
import type { PageAgent } from './PageAgent'
|
2025-09-29 16:33:15 +08:00
|
|
|
|
|
|
|
|
declare module '*.module.css' {
|
|
|
|
|
const classes: Record<string, string>
|
|
|
|
|
export default classes
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
declare module '*.md?raw' {
|
|
|
|
|
const content: string
|
|
|
|
|
export default content
|
|
|
|
|
}
|
2025-10-11 15:29:03 +08:00
|
|
|
|
|
|
|
|
declare global {
|
|
|
|
|
interface Window {
|
|
|
|
|
pageAgent?: PageAgent
|
|
|
|
|
PageAgent: typeof PageAgent
|
|
|
|
|
__PAGE_AGENT_IDS__: string[]
|
|
|
|
|
}
|
|
|
|
|
}
|