read-config-ng
Version:
Multi format configuration loader
11 lines • 473 B
TypeScript
/**
* Resolve a configuration file path asynchronously
*/
export declare function resolvePath(filepath: string, basedirs?: string | string[]): Promise<string | null>;
/**
* Resolve a configuration file path synchronously
*/
export declare function resolvePathSync(filepath: string, basedirs?: string | string[]): string | null;
export declare const async: typeof resolvePath;
export declare const sync: typeof resolvePathSync;
//# sourceMappingURL=resolve-path.d.ts.map