join-path.d.ts 432 B

12345
  1. import { Options, PathSeparator } from "../../types";
  2. export declare function joinPathWithBasePath(filename: string, directoryPath: string): string;
  3. export declare function joinDirectoryPath(filename: string, directoryPath: string, separator: PathSeparator): string;
  4. export type JoinPathFunction = (filename: string, directoryPath: string) => string;
  5. export declare function build(root: string, options: Options): JoinPathFunction;