bpms_site/.svn/pristine/fd/fd2a6b2e75eadeb514751c3018f73168b2955aba.svn-base
2025-11-02 16:38:49 +03:30

15 lines
478 B
Plaintext

/**
* The default join function iterates over possible base paths until a suitable join is found.
*
* The first base path is used as fallback for the case where none of the base paths can locate the actual file.
*
* @type {function}
*/
export declare const defaultJoin: ((filename: string, options: {
debug?: any | boolean;
root: string;
}) => (uri: string, baseOrIteratorOrAbsent: any) => any) & ("" | {
valueOf: () => string;
toString: () => string;
});