You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
698 B
17 lines
698 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
|
|
*/
|
|
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;
|