UNPKG

fuse-box

Version:

Fuse-Box a bundler that does it right

15 lines (14 loc) 392 B
import { ILookupResult } from './fileLookup'; export declare type ITypescriptPaths = { [key: string]: Array<string>; }; interface IPathsLookupProps { baseURL: string; cachePaths?: boolean; configLocation?: string; isDev?: boolean; paths?: ITypescriptPaths; target: string; } export declare function pathsLookup(props: IPathsLookupProps): ILookupResult; export {};