/** * @license * Copyright Google Inc. All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ import { BuildEvent, Builder, BuilderConfiguration, BuilderContext } from '@angular-devkit/architect'; import { Path } from '@angular-devkit/core'; import { Observable } from 'rxjs'; import { BrowserBuilderSchema } from '../browser/schema'; import { BuildWebpackAppShellSchema } from './schema'; export declare class AppShellBuilder implements Builder { context: BuilderContext; constructor(context: BuilderContext); run(builderConfig: BuilderConfiguration): Observable; build(targetString: string, overrides: {}): Observable; getServerModuleBundlePath(options: BuildWebpackAppShellSchema): Observable; getBrowserBuilderConfig(options: BuildWebpackAppShellSchema): Observable>; renderUniversal(options: BuildWebpackAppShellSchema): Observable; } export default AppShellBuilder;