blob: 2b27217f1d514589c9f88eff247edad2c9827b6e [file] [log] [blame]
/**
* @license
* Copyright Google LLC 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 * as ts from 'typescript';
/**
* Finds the main Angular module within the specified source file. The first module
* that is part of the "bootstrapModule" expression is returned.
*/
export declare function findMainModuleExpression(mainSourceFile: ts.SourceFile): ts.Expression | null;