misc-property-names-rule.d.ts 651 B

123456789101112131415161718
  1. /**
  2. * @license
  3. * Copyright Google LLC All Rights Reserved.
  4. *
  5. * Use of this source code is governed by an MIT-style license that can be
  6. * found in the LICENSE file at https://angular.io/license
  7. */
  8. import { MigrationRule } from '@angular/cdk/schematics';
  9. import * as ts from 'typescript';
  10. /**
  11. * Rule that walks through every property access expression and and reports a failure if
  12. * a given property name no longer exists but cannot be automatically migrated.
  13. */
  14. export declare class MiscPropertyNamesRule extends MigrationRule<null> {
  15. ruleEnabled: boolean;
  16. visitNode(node: ts.Node): void;
  17. private _visitPropertyAccessExpression;
  18. }