conflakes
Version:
Manager of the configuration, may be depending on the environment, with the ability to import another config files defined inside themselves.
13 lines (12 loc) • 517 B
TypeScript
import { LoaderAbstract } from "./LoaderAbstract";
export declare abstract class FileLoaderAbstract extends LoaderAbstract {
static loading: string[];
import(resource: string, type?: string | null, ignoreErrors?: boolean, as?: string | null, sourceResource?: string | null): any;
importFromArray(imports: {
resource: string;
ignore_errors: boolean;
type: string;
as: string;
}[], sourceResource: string): void;
protected getFileContent(resource: string): string;
}