@knodes/typedoc-pluginutils
Version:
A set of utilities for TypeDoc plugins
8 lines • 507 B
TypeScript
import { basename, extname, isAbsolute, parse } from 'path';
export declare const resolve: (from: string, ...to: Array<string | null | undefined>) => string;
export declare const join: (...paths: Array<string | null | undefined>) => string;
export declare const relative: (from: string, to: string) => string;
export declare const dirname: (path: string) => string;
export declare const normalize: (path: string) => string;
export { isAbsolute, parse, basename, extname };
//# sourceMappingURL=path.d.ts.map