Skip to content

Commit

Permalink
testcase
Browse files Browse the repository at this point in the history
  • Loading branch information
lukealvoeiro committed May 29, 2024
1 parent 2f7dcea commit 6147cdd
Show file tree
Hide file tree
Showing 4 changed files with 295 additions and 0 deletions.
Binary file added integration/schema-no-file-descriptor/const-enum.bin
Binary file not shown.
13 changes: 13 additions & 0 deletions integration/schema-no-file-descriptor/const-enum.proto
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
syntax = "proto3";

message DividerData {
enum DividerType {
DOUBLE = 0;
SINGLE = 1;
DASHED = 2;
DOTTED = 3;
}

DividerType type = 1;
map<string, DividerType> typeMap = 2;
}
281 changes: 281 additions & 0 deletions integration/schema-no-file-descriptor/const-enum.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions integration/schema-no-file-descriptor/parameters.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
outputSchema=no-file-descriptor

0 comments on commit 6147cdd

Please sign in to comment.