DictionaryEntryEnums: ({ [ DICTIONARY in keyof typeof dictionaryMap as typeof dictionaryMap[DICTIONARY] extends Record<string, string> ? DICTIONARY : never]: Extract<ExtractEnumString<typeof dictionaryMap[DICTIONARY]>, string | number> } & { [ DICTIONARY in keyof typeof dictionaryMap as typeof dictionaryMap[DICTIONARY] extends Record<string, string> ? never : DICTIONARY]: Extract<ExtractEnumNumber<typeof dictionaryMap[DICTIONARY]>, string | number> }) extends infer ENUMS ? { [ DICTIONARY in keyof ENUMS]: ENUMS[DICTIONARY] } : never

Generated using TypeDoc