UNPKG

@types/commondir

Version:
35 lines (28 loc) 1.22 kB
# Installation > `npm install --save @types/commondir` # Summary This package contains type definitions for commondir (https://github.com/substack/node-commondir). # Details Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/commondir. ## [index.d.ts](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/commondir/index.d.ts) ````ts export = commondir; /** * Compute the closest common parent directory for an array absolutePaths. * * @see \`{@link https://github.com/substack/node-commondir#commondirabsolutepaths }\` */ declare function commondir(basedir: string, relativePaths: string[]): string; /** * Compute the closest common parent directory for an array relativePaths which will be resolved for each dir in * relativePaths according to: path.resolve(basedir, dir). * * @see \`{@link https://github.com/substack/node-commondir#commondirbasedir-relativepaths }\` */ declare function commondir(absolutePaths: string[]): string; ```` ### Additional Details * Last updated: Mon, 06 Nov 2023 22:41:05 GMT * Dependencies: none # Credits These definitions were written by [Leonard Thieu](https://github.com/leonard-thieu).