1234567891011121314151617 |
- /**
- * @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.dev/license
- */
- import { Rule } from '@angular-devkit/schematics';
- import { Schema } from './schema';
- /**
- * Schematic factory entry-point for the `ng-add` schematic. The ng-add schematic will be
- * automatically executed if developers run `ng add @angular/material`.
- *
- * Since the Angular Material schematics depend on the schematic utility functions from the CDK,
- * we need to install the CDK before loading the schematic files that import from the CDK.
- */
- export default function (options: Schema): Rule;
|