2

I refer to the answer from Ionic - Horizontal scroll tab for Categories.

Could anyone tell me what should be included in the category.model?

PLau Peter
  • 51
  • 1
  • 9

1 Answers1

0

category.model is the file which will have the CategoryModel interface.

it should have:

export interface CategoryModel {
  id: number,
  name: string
  // add more things here based on your need
}

Read more about interfaces here: typescript interfaces

ashfaq.p
  • 5,379
  • 21
  • 35