export function numericEnumValues(enumType: Object) { return Object.keys(enumType) .map(key => Number(key)) .filter(value => !isNaN(value)); }