angular/packages/forms/signals/public_api.ts
Miles Malerba ba009b6031
feat(forms): add form directive
Adds a `formRoot` directive to manage submitting the form in signal
forms.
2026-02-10 14:34:48 -08:00

24 lines
752 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/control';
export * from './src/api/di';
export * from './src/api/rules';
export * from './src/api/rules/debounce';
export * from './src/api/rules/metadata';
export * from './src/api/rules/validation/validation_errors';
export * from './src/api/structure';
export * from './src/api/transformed_value';
export * from './src/api/types';
export * from './src/directive/form_field_directive';
export * from './src/directive/ng_signal_form';