@villedemontreal/general-utils
Version:
General utilities library
23 lines • 648 B
TypeScript
/**
* Library constants
*/
export declare class Constants {
/**
* The library root. When this library is used
* as a dependency in a project, the "libRoot"
* will be the path to the dependency folder,
* inside the "node_modules".
*/
libRoot: string;
/**
* The app root. When this library is used
* as a dependency in a project, the "appRoot"
* will be the path to the root project!
*/
appRoot: string;
constructor();
get testDataDirPath(): string;
findModulePath(subPath: string): string;
}
export declare const constants: Constants;
//# sourceMappingURL=constants.d.ts.map