export type EnumType<T extends EnumAllowedGenericType = EnumAllowedGenericType> = Record<string, T>;
export type EnumAllowedGenericType = string | number;
