wj-config
Version:
Javascript configuration module for NodeJS and browser frameworks such as React that works like ASP.net configuration where data sources are specified (usually JSON files) and environment variables can contribute/overwrite values by following a naming con
12 lines • 428 B
TypeScript
/**
* Error class used to raise an error whenever an environment object is being created with an environment value that
* does not exist in the list of known environment names.
*/
export declare class InvalidEnvNameError extends Error {
/**
* Environment value that caused the error.
*/
readonly value: string;
constructor(value: string, message?: string);
}
//# sourceMappingURL=EnvConfigError.d.ts.map