import{ AbstractBuildingBlock }from'@allianz/taly-core';/**
* enums should be ignored, we only will get `Record<EnumCode, any>` as the high level type
*/enum EnumCode {CODE_A='CODE_A',CODE_B='CODE_B',CODE_C='CODE_C'}interfaceSomeResources{
myProperty: Record<EnumCode,unknown>;}exportclassEnumComponentextendsAbstractBuildingBlock<unknown, SomeResources>{}