/** * @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.dev/license */ import * as o from '@angular/compiler'; import { TranslatorOptions } from '../../../src/ngtsc/translator/src/translator'; import { ImportGenerator } from '../../../src/ngtsc/translator/src/api/import_generator'; import { AstFactory } from '../../../src/ngtsc/translator/src/api/ast_factory'; /** * Generic translator helper class, which exposes methods for translating expressions and * statements. */ export declare class Translator { private factory; constructor(factory: AstFactory); /** * Translate the given output AST in the context of an expression. */ translateExpression(expression: o.Expression, imports: ImportGenerator, options?: TranslatorOptions): TExpression; /** * Translate the given output AST in the context of a statement. */ translateStatement(statement: o.Statement, imports: ImportGenerator, options?: TranslatorOptions): TStatement; }