Map all the (u)int64 type fields to JS_STRING

This commit is contained in:
Kevin Tan
2024-01-12 06:26:57 +00:00
parent c3c22543b9
commit 8c4ea11dfe
2 changed files with 7 additions and 7 deletions
+2 -2
View File
@@ -16,6 +16,6 @@ message RoomData {
int32 field_4 = 4;
int32 room_capacity = 5;
int32 field_6 = 6;
int64 field_7 = 7;
int64 field_8 = 8;
int64 field_7 = 7 [jstype = JS_STRING];
int64 field_8 = 8 [jstype = JS_STRING];
}