mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-17 19:13:34 +08:00
The standalone component helper utilities introduced into the `@angular/cdk` via https://github.com/angular/components/pull/24931 have been added to an export path (`private/components`) within `@schematics/angular`. The export path is primarily intended for the use of the components schematics within `@angular/cdk` and `@angular/material`. The API exported from this path is not considered public API, does not provide SemVer guarantees, and may be modified or removed without a deprecation cycle.
14 lines
331 B
TypeScript
14 lines
331 B
TypeScript
/**
|
|
* @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
|
|
*/
|
|
|
|
export {
|
|
addModuleImportToStandaloneBootstrap,
|
|
findBootstrapApplicationCall,
|
|
importsProvidersFrom,
|
|
} from './standalone';
|