Skip to content

Commit f4909a0

Browse files
committed
introduce null in writers methods
1 parent 4220ffb commit f4909a0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/serialization/multipart/src/multipartSerializationWriter.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ export class MultipartSerializationWriter implements SerializationWriter {
5151
throw new Error(`serialization of boolean values is not supported with multipart`);
5252
};
5353
// 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 => {
5555
throw new Error(`serialization of number values is not supported with multipart`);
5656
};
5757
// eslint-disable-next-line @typescript-eslint/no-unused-vars
@@ -90,7 +90,7 @@ export class MultipartSerializationWriter implements SerializationWriter {
9090
// eslint-disable-next-line @typescript-eslint/no-unused-vars
9191
_key?: string,
9292
// eslint-disable-next-line @typescript-eslint/no-unused-vars
93-
_values?: T[]| null,
93+
_values?: T[] | null,
9494
): void => {
9595
throw new Error(`serialization of collections is not supported with multipart`);
9696
};
@@ -113,7 +113,7 @@ export class MultipartSerializationWriter implements SerializationWriter {
113113
// eslint-disable-next-line @typescript-eslint/no-unused-vars
114114
key?: string | undefined,
115115
// eslint-disable-next-line @typescript-eslint/no-unused-vars
116-
...values: (T | null | undefined)[]
116+
...values: (T | null | undefined)[]
117117
): void => {
118118
throw new Error(`serialization of enum values is not supported with multipart`);
119119
};

0 commit comments

Comments
 (0)