UNPKG

@angular/cdk

Version:

Angular Material Component Development Kit

32 lines (31 loc) 1.39 kB
/** * @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 */ import { RuleFailure, Rules, RuleWalker } from 'tslint'; import * as ts from 'typescript'; /** * Rule that walks through every identifier that is part of Angular Material or thr CDK * and replaces the outdated name with the new one if specified in the upgrade data. */ export declare class Rule extends Rules.AbstractRule { apply(sourceFile: ts.SourceFile): RuleFailure[]; } export declare class Walker extends RuleWalker { /** Change data that upgrades to the specified target version. */ data: import("../../data/class-names").ClassNameUpgradeData[]; /** * List of identifier names that have been imported from `@angular/material` or `@angular/cdk` * in the current source file and therefore can be considered trusted. */ trustedIdentifiers: Set<string>; /** List of namespaces that have been imported from `@angular/material` or `@angular/cdk`. */ trustedNamespaces: Set<string>; /** Method that is called for every identifier inside of the specified project. */ visitIdentifier(identifier: ts.Identifier): void; /** Creates a failure and replacement for the specified identifier. */ private _createFailureWithReplacement; }