diff options
Diffstat (limited to 'cli/bench/testdata/npm/hono/dist/utils/url.d.ts')
-rw-r--r-- | cli/bench/testdata/npm/hono/dist/utils/url.d.ts | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/cli/bench/testdata/npm/hono/dist/utils/url.d.ts b/cli/bench/testdata/npm/hono/dist/utils/url.d.ts new file mode 100644 index 000000000..16e077f04 --- /dev/null +++ b/cli/bench/testdata/npm/hono/dist/utils/url.d.ts @@ -0,0 +1,6 @@ +export declare type Pattern = readonly [string, string, RegExp | true] | '*'; +export declare const splitPath: (path: string) => string[]; +export declare const getPattern: (label: string) => Pattern | null; +export declare const getPathFromURL: (url: string, strict?: boolean) => string; +export declare const isAbsoluteURL: (url: string) => boolean; +export declare const mergePath: (...paths: string[]) => string; |