Charles Lyding e895fc7c10 refactor(@schematics/angular): move standalone component helpers to a private export for Angular components
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.
2022-05-26 11:38:13 -07:00

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';