conflakes
Version:
Manager of the configuration, may be depending on the environment, with the ability to import another config files defined inside themselves.
10 lines (9 loc) • 409 B
TypeScript
import { LoaderAbstract } from "./LoaderAbstract";
import { LoaderResolverInterface } from "./LoaderResolverInterface";
export declare class DelegatingLoader extends LoaderAbstract {
private configContainer;
constructor(resolver: LoaderResolverInterface, configContainter: object);
load(resource: any, type?: any): any;
getConfig(): object;
supports(resource: any, type?: any): boolean;
}