brandonxiang / protobuf-to-typescript

A converter from pb to typescript
https://pb.brandonxiang.top
MIT License
77 stars 15 forks source link

error transform in vscode plugin #27

Closed brandonxiang closed 1 week ago

brandonxiang commented 1 week ago
syntax = "proto3";

service MyService {
    // This is a comment.
    rpc MyMethod (MyRequest) returns (MyResponse);
}

message MyRequest {
    // path is a required field.
    // 你是文件路径
    string path = 1;
}

message MyResponse {
    int32 status = 1;
}