blob: 7703b466786c76e2de5ae3c033f891849689bbb1 [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
*/
/// <amd-module name="@angular/core/schematics/migrations/undecorated-classes-with-decorated-fields/update_recorder" />
import * as ts from 'typescript';
import { ImportManagerUpdateRecorder } from '../../utils/import_manager';
/**
* Update recorder interface that is used to transform source files
* in a non-colliding way.
*/
export interface UpdateRecorder extends ImportManagerUpdateRecorder {
addClassDecorator(node: ts.ClassDeclaration, text: string): void;
addClassTodo(node: ts.ClassDeclaration, message: string): void;
commitUpdate(): void;
}