mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
Moves the control directive under api/ since it is part of the public API. Also removes the interop abstract control from the public API PR Close #63616
22 lines
626 B
TypeScript
22 lines
626 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.dev/license
|
|
*/
|
|
|
|
/**
|
|
* @module
|
|
* @description
|
|
* Entry point for all public APIs of this package.
|
|
*/
|
|
export * from './src/api/async';
|
|
export * from './src/api/control';
|
|
export * from './src/api/control_directive';
|
|
export * from './src/api/logic';
|
|
export * from './src/api/property';
|
|
export * from './src/api/structure';
|
|
export * from './src/api/types';
|
|
export * from './src/api/validation_errors';
|
|
export * from './src/api/validators';
|