2020-09-17 10:39:25 +03:00
|
|
|
export declare const root: string;
|
2020-09-21 08:14:06 +03:00
|
|
|
export declare function resolve(...args: Array<string>): string;
|
2020-09-17 10:39:25 +03:00
|
|
|
export declare const dirs: Readonly<{
|
|
|
|
rootPackageJsonPath: string;
|
|
|
|
packages: string;
|
|
|
|
root: string;
|
|
|
|
}>;
|
|
|
|
export declare const dirnames: ReadonlyArray<string>;
|
|
|
|
export declare const packages: ReadonlyArray<string>;
|
|
|
|
export declare function getPackagePath(name: string): string;
|
|
|
|
export declare function getDirname(name: string): string;
|
|
|
|
export declare function getPackageJsonPath(name: string): string;
|
|
|
|
export declare function isEthers(name: string): boolean;
|