@types/globjoin
Version:
TypeScript definitions for globjoin
17 lines (15 loc) • 578 B
TypeScript
/**
* Joins paths and globs.
*
* Like Node's {@link https://nodejs.org/api/path.html#path_path_join_path1_path2 path.join()}
* that join all arguments together and normalize the resulting path,
* globjoin takes arbitrary number of paths and/or arrays of paths,
* join them together and take care of negative globs.
*
* @param globs
*
* @return the result glob, or array of globs if any of the paths/globs are array.
*/
declare function globjoin(...globs: string[]): string;
declare function globjoin(...globs: Array<string | string[]>): string[];
export = globjoin;