/
githubmirror
/
angular
Обзор
Документация
Войти
/
githubmirror
/
angular
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
packages/forms/signals/src/api/rules/validation/index.ts
23 строки
646 B
Leon Senft
refactor(forms): add validation rules for date constraints (#68001)
06 май 2026, 21:59
06 май 2026, 21:59
276c917
Код
Авторство
О чём код?
/** * @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 */ export * from './email'; export * from './max'; export * from './max_date'; export * from './max_length'; export * from './min'; export * from './min_date'; export * from './min_length'; export * from './pattern'; export * from './required'; export * from './standard_schema'; export * from './validate'; export * from './validate_async'; export * from './validate_http'; export * from './validate_tree'; export * from './validation_errors';