css-selectors.d.ts 853 B

123456789101112131415161718192021222324
  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 { VersionChanges } from '@angular/cdk/schematics';
  9. export interface MaterialCssSelectorData {
  10. /** The CSS selector to replace. */
  11. replace: string;
  12. /** The new CSS selector. */
  13. replaceWith: string;
  14. /** Whitelist where this replacement is made. If omitted it is made in all files. */
  15. whitelist?: {
  16. /** Replace this name in stylesheet files. */
  17. stylesheet?: boolean;
  18. /** Replace this name in HTML files. */
  19. html?: boolean;
  20. /** Replace this name in TypeScript strings. */
  21. strings?: boolean;
  22. };
  23. }
  24. export declare const cssSelectors: VersionChanges<MaterialCssSelectorData>;