(constructors: Array<Constructor<any>>)
| 563 | } |
| 564 | |
| 565 | private _mapKnownTypes(constructors: Array<Constructor<any>>) { |
| 566 | const map = new Map<string, Constructor<any>>(); |
| 567 | |
| 568 | constructors.filter(ctor => ctor).forEach(ctor => map.set(this.nameResolver(ctor), ctor)); |
| 569 | |
| 570 | return map; |
| 571 | } |
| 572 | |
| 573 | private setSerializationStrategies<T, R = T>( |
| 574 | type: Serializable<T>, |
no outgoing calls
no test coverage detected