UNPKG

@tsed/platform-express

Version:
11 lines (10 loc) 277 B
type Framework = "v4" | "v5"; interface ConvertPathResult { path: string | RegExp; wildcard?: string; } /** * Converts a path between v4 and v5 formats */ export declare function convertPath(path: string | RegExp, framework: Framework): ConvertPathResult; export {};