You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

add.d.ts 250B

12345678910111213141516
  1. declare namespace CompanyDepartmentType {
  2. type addFormType = {
  3. id ?: Number,
  4. name?: String,
  5. company_id?: Number,
  6. contact?: String,
  7. phone?: String,
  8. mobile?: String,
  9. email?: String,
  10. }
  11. type addOtherFormType = {
  12. name?: String,
  13. }
  14. }