You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description of the Problem:
When compiling the generated output with the provided environment, the TypeScript compiler throws an error due to missing override modifiers on methods that override members in the base class.
Error Message:
TS4114: This member must have an 'override' modifier because it overrides a member in the base class 'Message'.
Bug Report
Protoc-Gen-TS Version: 0.8.0 (example version, replace with the actual version)
Environment:
[email protected]
Description of the Problem:
When compiling the generated output with the provided environment, the TypeScript compiler throws an error due to missing
override
modifiers on methods that override members in the base class.Error Message:
Generated output:
static deserializeBinary(bytes: Uint8Array): ClientCode
Expected output:
static override deserializeBinary(bytes: Uint8Array): ClientCode
The text was updated successfully, but these errors were encountered: