Files
30-seconds-of-code/node_modules/rollup/dist/typings/utils/path.d.ts
2019-08-20 15:52:05 +02:00

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';