UNPKG

463 BTypeScriptView Raw
1import { ResolverIO } from './types';
2declare const reversePathsToWalk: ({ folder, path }: {
3 folder: any;
4 path: any;
5}) => any;
6declare const configLookup: (file: string, folder: string, path?: any) => any;
7declare class ConfigResolver {
8 configFile: string;
9 io: ResolverIO;
10 constructor(configFile: string, io: ResolverIO);
11 resolve(from: string): Promise<Record<string, any>>;
12}
13export { configLookup, ConfigResolver, reversePathsToWalk };