UNPKG

823 BTypeScriptView Raw
1import { BuilderContext } from '@angular-devkit/architect';
2import { ExecutionTransformer } from '@angular-devkit/build-angular';
3import { IndexHtmlTransform } from '@angular-devkit/build-angular/src/utils/index-file/index-html-generator';
4import { Configuration } from 'webpack';
5import { CustomWebpackSchema } from './custom-webpack-schema';
6export declare const customWebpackConfigTransformFactory: (options: CustomWebpackSchema, context: BuilderContext) => ExecutionTransformer<Configuration>;
7export declare const indexHtmlTransformFactory: (options: CustomWebpackSchema, context: BuilderContext) => IndexHtmlTransform;
8export declare const getTransforms: (options: CustomWebpackSchema, context: BuilderContext) => {
9 webpackConfiguration: ExecutionTransformer<Configuration>;
10 indexHtml: IndexHtmlTransform;
11};