Laptop-Thing/web/node_modules/fdir/dist/api/functions/join-path.d.ts
2024-11-27 12:35:48 -05:00

6 lines
432 B
TypeScript

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