-
Notifications
You must be signed in to change notification settings - Fork 111
Expand file tree
/
Copy pathpublic_api.ts
More file actions
23 lines (23 loc) · 1.33 KB
/
public_api.ts
File metadata and controls
23 lines (23 loc) · 1.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/**
* ngrx-forms
* Proper integration of forms in Angular applications using Ngrx
* Written by Jonathan Ziller.
* MIT license.
* https://github.com/MrWolfZ/ngrx-forms
*/
export { email, EmailValidationError } from './src/email';
export { equalTo, EqualToValidationError } from './src/equal-to';
export { exclusiveBetween, ExclusiveBetweenValidationError } from './src/exclusive-between';
export { greaterThan, GreaterThanValidationError } from './src/greater-than';
export { greaterThanOrEqualTo, GreaterThanOrEqualToValidationError } from './src/greater-than-or-equal-to';
export { inclusiveBetween, InclusiveBetweenValidationError } from './src/inclusive-between';
export { lessThan, LessThanValidationError } from './src/less-than';
export { lessThanOrEqualTo, LessThanOrEqualToValidationError } from './src/less-than-or-equal-to';
export { maxLength, MaxLengthValidationError } from './src/max-length';
export { minLength, MinLengthValidationError } from './src/min-length';
export { notEqualTo, NotEqualToValidationError } from './src/not-equal-to';
export { pattern, PatternValidationError } from './src/pattern';
export { required, RequiredValidationError } from './src/required';
export { number, NumberValidationError } from './src/number';
export { requiredFalse } from './src/required-false';
export { requiredTrue } from './src/required-true';