(
object: Map<K, V>,
keyCtor: Serializable<K>,
valueCtor: Serializable<V>,
settings?: ITypedJSONSettings,
)
| 302 | } |
| 303 | |
| 304 | static stringifyAsMap<K, V>( |
| 305 | object: Map<K, V>, |
| 306 | keyCtor: Serializable<K>, |
| 307 | valueCtor: Serializable<V>, |
| 308 | settings?: ITypedJSONSettings, |
| 309 | ): string { |
| 310 | return new TypedJSON(valueCtor, settings).stringifyAsMap(object, keyCtor); |
| 311 | } |
| 312 | |
| 313 | static setGlobalConfig(config: ITypedJSONSettings) { |
| 314 | Object.assign(this._globalConfig, config); |
nothing calls this directly
no test coverage detected