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
It looks like import public feature of Protofile is not supported correctly when generating TypeScript code.
The generated code contains plain import * as in the file that corresponds to the Protofile with import public, and so the file where the transitive type is used is invalid, because of missing import. As TypeScript doesn't support a feature like import public (IMHO), the code generator should generate the transitive imports manually.
The text was updated successfully, but these errors were encountered:
It looks like
import public
feature of Protofile is not supported correctly when generating TypeScript code.The generated code contains plain
import * as
in the file that corresponds to the Protofile withimport public
, and so the file where the transitive type is used is invalid, because of missing import. As TypeScript doesn't support a feature likeimport public
(IMHO), the code generator should generate the transitive imports manually.The text was updated successfully, but these errors were encountered: