confinode
Version:
Node application configuration reader
15 lines (14 loc) • 347 B
TypeScript
/**
* An internal result.
*/
export default abstract class InternalResult<T> {
/**
* The configuration.
*/
abstract readonly configuration: T;
/**
* The name of the file containing the configuration. This object has the same hierarchy than the
* configuration.
*/
abstract readonly fileName?: unknown;
}