UNPKG

@angular/cdk

Version:

Angular Material Component Development Kit

14 lines (13 loc) 502 B
/** * @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 */ /** Update recorder that can be used to apply changes to a source file. */ export interface UpdateRecorder { insertLeft(index: number, content: string): UpdateRecorder; insertRight(index: number, content: string): UpdateRecorder; remove(index: number, length: number): UpdateRecorder; }