UNPKG

graphdb-workbench

Version:
9 lines (8 loc) 375 B
/** * 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];