mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
6703e6c803
It's a helper function that takes a form, and extrasts it's value unwrapping compat values and also allowing to filter them.
19 lines
560 B
TypeScript
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';
|