angular/packages/forms/signals/public_api.ts
Miles Malerba 1233f7319d refactor(forms): move control directive under api (#63616)
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
2025-09-08 13:58:55 -07:00

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