UNPKG

conflakes

Version:

Manager of the configuration, may be depending on the environment, with the ability to import another config files defined inside themselves.

12 lines (8 loc) 283 B
import {FileLoaderAbstract} from "./FileLoaderAbstract"; export abstract class BaseFileLoaderAbstract extends FileLoaderAbstract { protected container: object; public constructor(container: object) { super(); this.container = container; } }