I\'m working on a definitions file for the Google maps API for TypeScript.
And I need to define an enum like type eg. google.maps.Animation which contai
google.maps.Animation
TypeScript 0.9+ has a specification for enums:
enum AnimationType { BOUNCE, DROP, }
The final comma is optional.