ngc-webpack
Version:
A wrapper for the @ngtools/webpack with hooks into the compilation process
11 lines (10 loc) • 317 B
TypeScript
export declare let WebpackResourceLoader: {
new (): any;
get(filename: string): Promise<string>;
};
export declare type WebpackResourceLoader = {
new (): any;
get(filename: string): Promise<string>;
update(parentCompilation: any): void;
getResourceDependencies(filePath: string): string[];
};