If I've got a string value, for example, from the server. And I defined an enum type with string values. How could I convert the string value to enum type in typescript?
export enum ToolType {
ORA= 'orange', ST= 'stone' , DP= 'dupe'
}
const stringFromServer='orange';
// need TO transfer it to ToolType.ORA