2
Answers

How to assign a enum class to a variable instead of any?

Ronika Jency

Ronika Jency

4y
811
1
Hi,
 
export enum QuotationBillMethod {
Manday = 1,
Sampling = 2
}
BillingMethod : any = QuotationBillMethod;
 
How to assign a enum class to a variable instead of any?
Answers (2)