mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
2a141847a5
Adds the `isFieldTree` utility that allows users to assert whether a value is a field tree. This is something that has come up on Material recently and will be useful for users as well. Fixes #69984.
27 lines
805 B
TypeScript
27 lines
805 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/assertions';
|
|
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';
|
|
export * from './src/directive/form_root';
|
|
export * from './src/webmcp';
|