Files
med-notes/.pnpm-store/v10/files/6a/90073c6bf9ee277bd01fe12415c3cbfbbdc772db91ea160218a18712d42217b9be04df429093b73e0602e43c2d7bad82a98ddbd3e5633132292dbc5baeef23
2025-05-09 05:30:08 +02:00

25 lines
525 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;
};