aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/form-validators/form-validator.model.ts
blob: 6f2472ccded1942403e019ffd6addf0ed5b6193f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import { ValidatorFn } from '@angular/forms'

export type BuildFormValidator = {
  VALIDATORS: ValidatorFn[]
  MESSAGES: { [ name: string ]: string }
}

export type BuildFormArgument = {
  [ id: string ]: BuildFormValidator | BuildFormArgument
}

export type BuildFormDefaultValues = {
  [ name: string ]: number | string | string[] | BuildFormDefaultValues
}