UNPKG

@feoe/fs-router

Version:
18 lines (17 loc) 377 B
/** * @overview * @author AEPKILL * @created 2025-02-11 17:54:08 */ interface ParsedQueryParams { properties: Array<Array<{ name: string; type: string; optional: boolean; }>>; } interface ParseRouteFileResult { queryParams?: ParsedQueryParams; } export declare function parseRouteFile(filePath: string): ParseRouteFileResult; export {};