enums.ts 152 B

1234567891011
  1. enum Category {
  2. Biography, // 0
  3. Poetry, // 1
  4. Fiction, // 2
  5. History, // 3
  6. Children, // 4
  7. }
  8. export {
  9. Category,
  10. }