Last change
on this file was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
799 bytes
|
Rev | Line | |
---|
[6a3a178] | 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 { ProjectDefinition } from '@angular-devkit/core/src/workspace';
|
---|
| 9 | import { Schema } from '@schematics/angular/component/schema';
|
---|
| 10 | /**
|
---|
| 11 | * Returns the default options for the `@schematics/angular:component` schematic which would
|
---|
| 12 | * have been specified at project initialization (ng new or ng init).
|
---|
| 13 | *
|
---|
| 14 | * This is necessary because the Angular CLI only exposes the default values for the "--style",
|
---|
| 15 | * "--inlineStyle", "--skipTests" and "--inlineTemplate" options to the "component" schematic.
|
---|
| 16 | */
|
---|
| 17 | export declare function getDefaultComponentOptions(project: ProjectDefinition): Partial<Schema>;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.