st-bundle
Version:
CLI for watching and bundling SpringType projects.
15 lines (14 loc) • 384 B
TypeScript
import { ILookupResult } from './fileLookup';
export declare type ITypescriptPaths = {
[key: string]: Array<string>;
};
interface IPathsLookupProps {
homeDir: string;
baseURL: string;
isDev?: boolean;
cachePaths?: boolean;
paths?: ITypescriptPaths;
target: string;
}
export declare function pathsLookup(props: IPathsLookupProps): ILookupResult;
export {};