graphdb-workbench
Version:
The web application for GraphDB APIs
9 lines (8 loc) • 375 B
TypeScript
/**
* Converts a string to the corresponding enum value.
* @param enumObj - The enum object to convert the string to.
* @param value - The string value to convert.
* @returns The corresponding enum value.
* @throws Error if the value is not a valid enum value.
*/
export declare function toEnum<T extends Record<string, string>>(enumObj: T, value: string): T[keyof T];