File tree 1 file changed +3
-3
lines changed
packages/serialization/multipart/src
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ export class MultipartSerializationWriter implements SerializationWriter {
51
51
throw new Error ( `serialization of boolean values is not supported with multipart` ) ;
52
52
} ;
53
53
// eslint-disable-next-line @typescript-eslint/no-unused-vars
54
- public writeNumberValue = ( key ?: string , value ?: number | null ) : void => {
54
+ public writeNumberValue = ( key ?: string , value ?: number | null ) : void => {
55
55
throw new Error ( `serialization of number values is not supported with multipart` ) ;
56
56
} ;
57
57
// eslint-disable-next-line @typescript-eslint/no-unused-vars
@@ -90,7 +90,7 @@ export class MultipartSerializationWriter implements SerializationWriter {
90
90
// eslint-disable-next-line @typescript-eslint/no-unused-vars
91
91
_key ?: string ,
92
92
// eslint-disable-next-line @typescript-eslint/no-unused-vars
93
- _values ?: T [ ] | null ,
93
+ _values ?: T [ ] | null ,
94
94
) : void => {
95
95
throw new Error ( `serialization of collections is not supported with multipart` ) ;
96
96
} ;
@@ -113,7 +113,7 @@ export class MultipartSerializationWriter implements SerializationWriter {
113
113
// eslint-disable-next-line @typescript-eslint/no-unused-vars
114
114
key ?: string | undefined ,
115
115
// eslint-disable-next-line @typescript-eslint/no-unused-vars
116
- ...values : ( T | null | undefined ) [ ]
116
+ ...values : ( T | null | undefined ) [ ]
117
117
) : void => {
118
118
throw new Error ( `serialization of enum values is not supported with multipart` ) ;
119
119
} ;
You can’t perform that action at this time.
0 commit comments