thrift-typescript
thrift-typescript copied to clipboard
Generated code is not compliant with noUnusedParameters
struct MyResponse { }
generates the following code:
export class MyResponse { constructor(args?: IMyResponseArgs) { } }
which with noUnusedParameters causes errors
Yeah, we don't document that it will work with that flag, just noUnusedLocals. I would like to add this support. Not sure when we will have the bandwidth.