14 lines
568 B
TypeScript
14 lines
568 B
TypeScript
declare function normalizePath(filename: any): string;
|
|
declare function isInRoot(root: any, filename: any): boolean;
|
|
declare function resolveInRoot(root: any): string;
|
|
declare function setExtension(filename: any, ext: any): string;
|
|
declare function isPureRelative(filename: any): boolean;
|
|
declare const _default: {
|
|
isInRoot: typeof isInRoot;
|
|
resolveInRoot: typeof resolveInRoot;
|
|
normalize: typeof normalizePath;
|
|
setExtension: typeof setExtension;
|
|
isPureRelative: typeof isPureRelative;
|
|
};
|
|
export default _default;
|
|
//# sourceMappingURL=path.d.ts.map
|