2
Answers

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

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)