UNPKG

@angular/cdk

Version:

Angular Material Component Development Kit

26 lines (25 loc) 940 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.io/license */ /// <amd-module name="@angular/cdk/schematics/ng-update/data/css-selectors" /> import { VersionChanges } from '../../update-tool/version-changes'; export interface CssSelectorUpgradeData { /** The CSS selector to replace. */ replace: string; /** The new CSS selector. */ replaceWith: string; /** Whitelist where this replacement is made. If omitted it is made in all files. */ whitelist?: { /** Replace this name in stylesheet files. */ stylesheet?: boolean; /** Replace this name in HTML files. */ html?: boolean; /** Replace this name in TypeScript strings. */ strings?: boolean; }; } export declare const cssSelectors: VersionChanges<CssSelectorUpgradeData>;