med-notes/.pnpm-store/v10/files/01/02016e0f5b2e35beb4b8e62dbd52025250ce2639a90b695549c859eccb2f8d96f3355fb9ef73dcdc9dc1aed19e3f0459896925fdae19846c013a257dffe4dd
2025-05-09 05:30:08 +02:00

33 lines
562 B
Plaintext

export type Manifest = {
routes: Record<
string,
{
filePath?: string
preloads?: Array<string>
assets?: Array<RouterManagedTag>
}
>
}
export type RouterManagedTag =
| {
tag: 'title'
attrs?: Record<string, any>
children: string
}
| {
tag: 'meta' | 'link'
attrs?: Record<string, any>
children?: never
}
| {
tag: 'script'
attrs?: Record<string, any>
children?: string
}
| {
tag: 'style'
attrs?: Record<string, any>
children?: string
}