Files
homewebsite/node_modules/astro/dist/vite-plugin-astro/query.d.ts
2025-10-17 20:17:33 +00:00

16 lines
366 B
TypeScript

interface AstroQuery {
astro?: boolean;
src?: boolean;
type?: 'script' | 'template' | 'style' | 'custom';
index?: number;
lang?: string;
raw?: boolean;
inline?: boolean;
}
interface ParsedRequestResult {
filename: string;
query: AstroQuery;
}
export declare function parseAstroRequest(id: string): ParsedRequestResult;
export {};