2018-09-21 12:15:06 -07:00
|
|
|
/**
|
|
|
|
|
* @license
|
2020-05-19 12:08:49 -07:00
|
|
|
* Copyright Google LLC All Rights Reserved.
|
2018-09-21 12:15:06 -07:00
|
|
|
*
|
|
|
|
|
* 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
|
|
|
|
|
*/
|
|
|
|
|
|
2020-09-16 11:19:56 +01:00
|
|
|
export {AstFactory, BinaryOperator, LeadingComment, ObjectLiteralProperty, SourceMapLocation, SourceMapRange, TemplateElement, TemplateLiteral, UnaryOperator, VariableDeclarationType} from './src/api/ast_factory';
|
2020-09-09 22:00:27 +01:00
|
|
|
export {Import, ImportGenerator, NamedImport} from './src/api/import_generator';
|
2020-10-03 19:59:53 +01:00
|
|
|
export {Context} from './src/context';
|
2020-09-09 22:00:27 +01:00
|
|
|
export {ImportManager} from './src/import_manager';
|
2020-10-03 19:59:53 +01:00
|
|
|
export {ExpressionTranslatorVisitor, RecordWrappedNodeExprFn, TranslatorOptions} from './src/translator';
|
2020-09-09 22:00:27 +01:00
|
|
|
export {translateType} from './src/type_translator';
|
|
|
|
|
export {attachComments, TypeScriptAstFactory} from './src/typescript_ast_factory';
|
|
|
|
|
export {translateExpression, translateStatement} from './src/typescript_translator';
|