Files
DefinitelyTyped/protobufjs
John Children d0646a6650 Correct minor error on ProtoEnum values array
The values field of the ProtoEnum interface should be an array not a single entry. This can be seen when using the Protobuf.js parser on enum fields where a file containing:

```

enum Priority {
    LOW = 1;
    MEDIUM = 2;
    HIGH = 3;
}
```

Is parsed to:

```
{ package: null,                                                             
  messages: [],                                                              
  enums:                                                                     
   [ { name: 'Priority',                                                     
       values:                                                               
        [ { name: 'LOW', id: 1 },                                            
          { name: 'MEDIUM', id: 2 },                                         
          { name: 'HIGH', id: 3 } ],                                         
       options: {} } ],                                                      
  imports: [],                                                               
  options: {},                                                               
  services: [] } 
```
2016-10-07 17:07:44 +01:00
..