misc-template-rule.d.ts 602 B

12345678910111213141516
  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, ResolvedResource } from '@angular/cdk/schematics';
  9. /**
  10. * Rule that walks through every inline or external template and reports if there
  11. * are outdated usages of the Angular Material API that needs to be updated manually.
  12. */
  13. export declare class MiscTemplateRule extends MigrationRule<null> {
  14. ruleEnabled: boolean;
  15. visitTemplate(template: ResolvedResource): void;
  16. }