* Applies type options map in static context. * * @param {Map , TypeOptions >} typeOptionsMap Type options map. * * @returns {TypeManager} Static instance of type manager.
(typeOptionsMap: Map<TypeFn<TObject>, TypeOptions<TObject>>)
| 584 | * @returns {TypeManager} Static instance of type manager. |
| 585 | */ |
| 586 | public static applyTypeOptionsMap<TObject>(typeOptionsMap: Map<TypeFn<TObject>, TypeOptions<TObject>>): TypeManager |
| 587 | { |
| 588 | return this.staticTypeManager.applyTypeOptionsMap(typeOptionsMap); |
| 589 | } |
| 590 | |
| 591 | /** |
| 592 | * Applies type options map. |
no test coverage detected