* Applies type configuration map in static context. * * @param {Map , TypeConfiguration >} typeConfigurationMap Type configuration map. * * @returns {TypeManager} Static instance of type manager.
(typeConfigurationMap: Map<TypeFn<TObject>, TypeConfiguration<TObject>>)
| 643 | * @returns {TypeManager} Static instance of type manager. |
| 644 | */ |
| 645 | public static applyTypeConfigurationMap<TObject>(typeConfigurationMap: Map<TypeFn<TObject>, TypeConfiguration<TObject>>): TypeManager |
| 646 | { |
| 647 | return this.staticTypeManager.applyTypeConfigurationMap(typeConfigurationMap); |
| 648 | } |
| 649 | |
| 650 | /** |
| 651 | * Applies type configuration map. |
no test coverage detected