@handfish/hygen
Version:
The scalable code generator that saves you time.
14 lines (13 loc) • 463 B
TypeScript
import { ResolverIO } from './types';
declare const reversePathsToWalk: ({ folder, path }: {
folder: any;
path: any;
}) => any;
declare const configLookup: (file: string, folder: string, path?: any) => any;
declare class ConfigResolver {
configFile: string;
io: ResolverIO;
constructor(configFile: string, io: ResolverIO);
resolve(from: string): Promise<Record<string, any>>;
}
export { configLookup, ConfigResolver, reversePathsToWalk };