Usage of Enums in typescript
Declaration of enum in TypeScript as given below:
export enum Category {Cricket,Tennis,GOLF,Badminton}
and in required .ts file import like a module as given below:
import {Category} from './enums'
Note : enums is another ts file, Kindly refer an image below for enums.ts file