const fields: IField[] = [
{
type: 'input', // required
name: 'name-field-tel', // required
value: '', // optional
attributes: {
type: 'tel', // default = text, or password, email, number, tel, optional
id: 'id-field-tel', // optional
classes: ['form-control'], // optional
label: 'Label field tel', // optional
placeholder: 'Placeholder field tel', // optional
disabled: false, // optional
readonly: false // optional
}
}
];