misc-class-inheritance-rule.d.ts 579 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 checks for classes that extend Angular Material classes which
  12. * have changed their API.
  13. */
  14. export declare class MiscClassInheritanceRule extends MigrationRule<null> {
  15. ruleEnabled: boolean;
  16. visitNode(node: ts.Node): void;
  17. private _visitClassDeclaration;
  18. }