mirror of
https://github.com/denoland/deno.git
synced 2024-11-01 09:24:20 -04:00
7 lines
412 B
TypeScript
7 lines
412 B
TypeScript
|
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;
|