conflakes
Version:
Manager of the configuration, may be depending on the environment, with the ability to import another config files defined inside themselves.
8 lines (7 loc) • 338 B
TypeScript
import { LoaderResolverInterface } from "./LoaderResolverInterface";
export interface LoaderInterface {
load(resource: any, type: string | null, as?: string | null): void;
supports(resource: any, type: string | null): boolean;
getResolver(): LoaderResolverInterface;
setResolver(resolver: LoaderResolverInterface): any;
}