UNPKG

@villedemontreal/workit-core

Version:

This package provides default and no-op implementations of the WorkIt types for client packages.

25 lines (24 loc) 512 B
export declare class Constants { private static _instance; private _envs; private constructor(); /** * Singleton * @readonly * @static * @type {Constants} * @memberof Constants */ static get instance(): Readonly<Constants>; /** * Known environment types * @readonly * @memberof Constants */ get envs(): { dev: string; accept: string; prod: string; }; } export declare const constants: Readonly<Constants>;