Proto2TypeScript icon indicating copy to clipboard operation
Proto2TypeScript copied to clipboard

Generate TypeScript definitions from a Protocol Buffers model

Results 5 Proto2TypeScript issues
Sort by recently updated
recently updated
newest added

MustacheStatic.tags property should be an array of strings, correct? It's defined as string in the type definitions.

Broken in 0c903645e26e6eb35b621f9c4aa8227aac28206b. That commit introduced hardcoded references to `Buffer` which is not defined in browsers, breaking Proto2TypeScript for non-Node environments. From https://github.com/SINTEF-9012/Proto2TypeScript/pull/13#issuecomment-238301201: > But we should definitely fix that....

I've searched for days for a working example of how someone has used this library to work with protocol buffers in TypeScript and have come up with nothing. The example...

When generating the types for a proto file that has extensions that reference the message that extends the generated typescript contains errors and I'm unable to include the types in...

bug

Hello. I notice **maps** are not properly converted to typescript definitions. For example. `map attr1 = 1;` should convert to `attr1 { [key: string]: number }`