How to programmatically enumerate an enum type?

Say I have a TypeScript enum, MyEnum, as follows: enum MyEnum { First, Second, Third } What would be the best way in TypeScript 0.9.5 to produce an array of the enum values? Example: ...