7 lines
331 B
TypeScript
7 lines
331 B
TypeScript
export declare const absolutePath: RegExp;
|
|
export declare const relativePath: RegExp;
|
|
export declare function isAbsolute(path: string): boolean;
|
|
export declare function isRelative(path: string): boolean;
|
|
export declare function normalize(path: string): string;
|
|
export { basename, dirname, extname, relative, resolve } from 'path';
|