I'm looking for guidance on how to specify an object type for the user_roles variable in TypeScript, instead of just using 'any.' Could someone provide some insights on how to achieve this?
user_roles: FormGroup = new FormGroup({
name: new FormControl(''),
email: new FormControl(''),
role: new FormControl(''),
password: new FormControl(''),
})