We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 58cf6c5 commit 0f9070eCopy full SHA for 0f9070e
packages/abstractions/src/serialization/serializationWriter.ts
@@ -93,6 +93,13 @@ export interface SerializationWriter {
93
* @param values the value to write to the stream.
94
*/
95
writeEnumValue<T>(key?: string, ...values: (T | null | undefined)[]): void;
96
+
97
+ /**
98
+ * Writes the specified collection of enum values to the stream with an optional given key.
99
+ * @param key the key to write the value with.
100
+ * @param values the value to write to the stream.
101
+ */
102
+ writeCollectionOfEnumValue<T>(key?: string, values?: (T | null | undefined)[]): void;
103
/**
104
* Writes a null value for the specified key.
105
* @param key the key to write the value with.
0 commit comments