UNPKG

read-config-ng

Version:
11 lines 473 B
/** * 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