ethers.js/misc/admin/lib/path.d.ts
2020-09-21 01:14:06 -04:00

14 lines
566 B
TypeScript

export declare const root: string;
export declare function resolve(...args: Array<string>): string;
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;