@@ -121,7 +121,7 @@ export namespace jspb {
121121 constructor ( properties ?: jspb . test . IOptionalFields ) ;
122122 public aString : string ;
123123 public aBool : boolean ;
124- public aNestedMessage : ( jspb . test . OptionalFields . INested | null ) ;
124+ public aNestedMessage ? : ( jspb . test . OptionalFields . INested | null ) ;
125125 public aRepeatedMessage : jspb . test . OptionalFields . INested [ ] ;
126126 public aRepeatedString : string [ ] ;
127127 public static create ( properties ?: jspb . test . IOptionalFields ) : jspb . test . OptionalFields ;
@@ -196,7 +196,7 @@ export namespace jspb {
196196 constructor ( properties ?: jspb . test . IComplex ) ;
197197 public aString : string ;
198198 public anOutOfOrderBool : boolean ;
199- public aNestedMessage : ( jspb . test . Complex . INested | null ) ;
199+ public aNestedMessage ? : ( jspb . test . Complex . INested | null ) ;
200200 public aRepeatedMessage : jspb . test . Complex . INested [ ] ;
201201 public aRepeatedString : string [ ] ;
202202 public static create ( properties ?: jspb . test . IComplex ) : jspb . test . Complex ;
@@ -382,7 +382,7 @@ export namespace jspb {
382382 class TestClone {
383383 constructor ( properties ?: jspb . test . ITestClone ) ;
384384 public str : string ;
385- public simple1 : ( jspb . test . ISimple1 | null ) ;
385+ public simple1 ? : ( jspb . test . ISimple1 | null ) ;
386386 public simple2 : jspb . test . ISimple1 [ ] ;
387387 public bytesField : Uint8Array ;
388388 public unused : string ;
@@ -428,10 +428,10 @@ export namespace jspb {
428428 constructor ( properties ?: jspb . test . ITestGroup ) ;
429429 public repeatedGroup : jspb . test . TestGroup . IRepeatedGroup [ ] ;
430430 public requiredGroup : jspb . test . TestGroup . IRequiredGroup ;
431- public optionalGroup : ( jspb . test . TestGroup . IOptionalGroup | null ) ;
431+ public optionalGroup ? : ( jspb . test . TestGroup . IOptionalGroup | null ) ;
432432 public id : string ;
433433 public requiredSimple : jspb . test . ISimple2 ;
434- public optionalSimple : ( jspb . test . ISimple2 | null ) ;
434+ public optionalSimple ? : ( jspb . test . ISimple2 | null ) ;
435435 public static create ( properties ?: jspb . test . ITestGroup ) : jspb . test . TestGroup ;
436436 public static encode ( message : jspb . test . ITestGroup , writer ?: $protobuf . Writer ) : $protobuf . Writer ;
437437 public static encodeDelimited ( message : jspb . test . ITestGroup , writer ?: $protobuf . Writer ) : $protobuf . Writer ;
@@ -508,7 +508,7 @@ export namespace jspb {
508508
509509 class TestGroup1 {
510510 constructor ( properties ?: jspb . test . ITestGroup1 ) ;
511- public group : ( jspb . test . TestGroup . IRepeatedGroup | null ) ;
511+ public group ? : ( jspb . test . TestGroup . IRepeatedGroup | null ) ;
512512 public static create ( properties ?: jspb . test . ITestGroup1 ) : jspb . test . TestGroup1 ;
513513 public static encode ( message : jspb . test . ITestGroup1 , writer ?: $protobuf . Writer ) : $protobuf . Writer ;
514514 public static encodeDelimited ( message : jspb . test . ITestGroup1 , writer ?: $protobuf . Writer ) : $protobuf . Writer ;
@@ -572,7 +572,7 @@ export namespace jspb {
572572 constructor ( properties ?: jspb . test . ITestMessageWithOneof ) ;
573573 public pone : string ;
574574 public pthree : string ;
575- public rone : ( jspb . test . ITestMessageWithOneof | null ) ;
575+ public rone ? : ( jspb . test . ITestMessageWithOneof | null ) ;
576576 public rtwo : string ;
577577 public normalField : boolean ;
578578 public repeatedField : string [ ] ;
@@ -642,7 +642,7 @@ export namespace jspb {
642642 public mapInt32String : { [ k : string ] : string } ;
643643 public mapInt64String : { [ k : string ] : string } ;
644644 public mapBoolString : { [ k : string ] : string } ;
645- public testMapFields : ( jspb . test . ITestMapFieldsNoBinary | null ) ;
645+ public testMapFields ? : ( jspb . test . ITestMapFieldsNoBinary | null ) ;
646646 public mapStringTestmapfields : { [ k : string ] : jspb . test . ITestMapFieldsNoBinary } ;
647647 public static create ( properties ?: jspb . test . ITestMapFieldsNoBinary ) : jspb . test . TestMapFieldsNoBinary ;
648648 public static encode ( message : jspb . test . ITestMapFieldsNoBinary , writer ?: $protobuf . Writer ) : $protobuf . Writer ;
@@ -785,8 +785,8 @@ export namespace google {
785785 public enumType : google . protobuf . IEnumDescriptorProto [ ] ;
786786 public service : google . protobuf . IServiceDescriptorProto [ ] ;
787787 public extension : google . protobuf . IFieldDescriptorProto [ ] ;
788- public options : ( google . protobuf . IFileOptions | null ) ;
789- public sourceCodeInfo : ( google . protobuf . ISourceCodeInfo | null ) ;
788+ public options ? : ( google . protobuf . IFileOptions | null ) ;
789+ public sourceCodeInfo ? : ( google . protobuf . ISourceCodeInfo | null ) ;
790790 public syntax : string ;
791791 public static create ( properties ?: google . protobuf . IFileDescriptorProto ) : google . protobuf . FileDescriptorProto ;
792792 public static encode ( message : google . protobuf . IFileDescriptorProto , writer ?: $protobuf . Writer ) : $protobuf . Writer ;
@@ -821,7 +821,7 @@ export namespace google {
821821 public enumType : google . protobuf . IEnumDescriptorProto [ ] ;
822822 public extensionRange : google . protobuf . DescriptorProto . IExtensionRange [ ] ;
823823 public oneofDecl : google . protobuf . IOneofDescriptorProto [ ] ;
824- public options : ( google . protobuf . IMessageOptions | null ) ;
824+ public options ? : ( google . protobuf . IMessageOptions | null ) ;
825825 public reservedRange : google . protobuf . DescriptorProto . IReservedRange [ ] ;
826826 public reservedName : string [ ] ;
827827 public static create ( properties ?: google . protobuf . IDescriptorProto ) : google . protobuf . DescriptorProto ;
@@ -902,7 +902,7 @@ export namespace google {
902902 public defaultValue : string ;
903903 public oneofIndex : number ;
904904 public jsonName : string ;
905- public options : ( google . protobuf . IFieldOptions | null ) ;
905+ public options ? : ( google . protobuf . IFieldOptions | null ) ;
906906 public static create ( properties ?: google . protobuf . IFieldDescriptorProto ) : google . protobuf . FieldDescriptorProto ;
907907 public static encode ( message : google . protobuf . IFieldDescriptorProto , writer ?: $protobuf . Writer ) : $protobuf . Writer ;
908908 public static encodeDelimited ( message : google . protobuf . IFieldDescriptorProto , writer ?: $protobuf . Writer ) : $protobuf . Writer ;
@@ -952,7 +952,7 @@ export namespace google {
952952 class OneofDescriptorProto {
953953 constructor ( properties ?: google . protobuf . IOneofDescriptorProto ) ;
954954 public name : string ;
955- public options : ( google . protobuf . IOneofOptions | null ) ;
955+ public options ? : ( google . protobuf . IOneofOptions | null ) ;
956956 public static create ( properties ?: google . protobuf . IOneofDescriptorProto ) : google . protobuf . OneofDescriptorProto ;
957957 public static encode ( message : google . protobuf . IOneofDescriptorProto , writer ?: $protobuf . Writer ) : $protobuf . Writer ;
958958 public static encodeDelimited ( message : google . protobuf . IOneofDescriptorProto , writer ?: $protobuf . Writer ) : $protobuf . Writer ;
@@ -974,7 +974,7 @@ export namespace google {
974974 constructor ( properties ?: google . protobuf . IEnumDescriptorProto ) ;
975975 public name : string ;
976976 public value : google . protobuf . IEnumValueDescriptorProto [ ] ;
977- public options : ( google . protobuf . IEnumOptions | null ) ;
977+ public options ? : ( google . protobuf . IEnumOptions | null ) ;
978978 public static create ( properties ?: google . protobuf . IEnumDescriptorProto ) : google . protobuf . EnumDescriptorProto ;
979979 public static encode ( message : google . protobuf . IEnumDescriptorProto , writer ?: $protobuf . Writer ) : $protobuf . Writer ;
980980 public static encodeDelimited ( message : google . protobuf . IEnumDescriptorProto , writer ?: $protobuf . Writer ) : $protobuf . Writer ;
@@ -996,7 +996,7 @@ export namespace google {
996996 constructor ( properties ?: google . protobuf . IEnumValueDescriptorProto ) ;
997997 public name : string ;
998998 public number : number ;
999- public options : ( google . protobuf . IEnumValueOptions | null ) ;
999+ public options ? : ( google . protobuf . IEnumValueOptions | null ) ;
10001000 public static create ( properties ?: google . protobuf . IEnumValueDescriptorProto ) : google . protobuf . EnumValueDescriptorProto ;
10011001 public static encode ( message : google . protobuf . IEnumValueDescriptorProto , writer ?: $protobuf . Writer ) : $protobuf . Writer ;
10021002 public static encodeDelimited ( message : google . protobuf . IEnumValueDescriptorProto , writer ?: $protobuf . Writer ) : $protobuf . Writer ;
@@ -1018,7 +1018,7 @@ export namespace google {
10181018 constructor ( properties ?: google . protobuf . IServiceDescriptorProto ) ;
10191019 public name : string ;
10201020 public method : google . protobuf . IMethodDescriptorProto [ ] ;
1021- public options : ( google . protobuf . IServiceOptions | null ) ;
1021+ public options ? : ( google . protobuf . IServiceOptions | null ) ;
10221022 public static create ( properties ?: google . protobuf . IServiceDescriptorProto ) : google . protobuf . ServiceDescriptorProto ;
10231023 public static encode ( message : google . protobuf . IServiceDescriptorProto , writer ?: $protobuf . Writer ) : $protobuf . Writer ;
10241024 public static encodeDelimited ( message : google . protobuf . IServiceDescriptorProto , writer ?: $protobuf . Writer ) : $protobuf . Writer ;
@@ -1044,7 +1044,7 @@ export namespace google {
10441044 public name : string ;
10451045 public inputType : string ;
10461046 public outputType : string ;
1047- public options : ( google . protobuf . IMethodOptions | null ) ;
1047+ public options ? : ( google . protobuf . IMethodOptions | null ) ;
10481048 public clientStreaming : boolean ;
10491049 public serverStreaming : boolean ;
10501050 public static create ( properties ?: google . protobuf . IMethodDescriptorProto ) : google . protobuf . MethodDescriptorProto ;
0 commit comments