@villedemontreal/logger
Version:
Logger and logging utilities
17 lines • 357 B
TypeScript
/**
* Configurations for the application.
*/
declare class Configs {
/**
* Absolute path to the root of the project.
*/
root: string;
/**
* Absolute path to a directory to use for tests.
*/
dataDirPath: string;
constructor();
}
export declare const configs: Configs;
export {};
//# sourceMappingURL=configs.d.ts.map