Files
kirjs 6703e6c803 refactor(forms): add structured extract filter
It's a helper function that takes a form, and extrasts it's value unwrapping compat values and also allowing to filter them.
2026-03-16 15:24:20 -06:00

19 lines
560 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/compat_form';
export {extractValue} from './src/api/extract';
export {CompatValidationError} from '../src/compat/validation_errors';
export * from './src/api/di';
export {SignalFormControl} from './src/signal_form_control/signal_form_control';