conflakes
Version:
Manager of the configuration, may be depending on the environment, with the ability to import another config files defined inside themselves.
11 lines (9 loc) • 347 B
text/typescript
import {LoaderInterface} from "./LoaderInterface";
export interface LoaderResolverInterface {
/**
* Returns a loader able to load the resource.
*
* @return LoaderInterface|false The loader or false if none is able to load the resource
*/
resolve(resource: any, type: string|null): LoaderInterface|boolean;
}