1 | import { Options, LogicalRoot } from './types';
|
2 | declare function resolveDeps(dir: string, options: Options): Promise<LogicalRoot>;
|
3 | declare namespace resolveDeps {
|
4 | var physicalTree: typeof import("./deps");
|
5 | var logicalTree: typeof import("./logical");
|
6 | var walk: typeof import("./walk");
|
7 | var prune: typeof import("./prune");
|
8 | var pluck: typeof import("./pluck");
|
9 | var unique: typeof import("./unique");
|
10 | }
|
11 | export = resolveDeps;
|