(
object: Set<T>,
elementType: Serializable<T>,
settings?: ITypedJSONSettings,
)
| 294 | } |
| 295 | |
| 296 | static stringifyAsSet<T>( |
| 297 | object: Set<T>, |
| 298 | elementType: Serializable<T>, |
| 299 | settings?: ITypedJSONSettings, |
| 300 | ): string { |
| 301 | return new TypedJSON(elementType, settings).stringifyAsSet(object); |
| 302 | } |
| 303 | |
| 304 | static stringifyAsMap<K, V>( |
| 305 | object: Map<K, V>, |
no test coverage detected