* Applies shared type options in static context. * * @param {Partial >} typeOptionsBase Type options base. * * @returns {TypeManager} Static instance of type manager.
(typeOptionsBase: Partial<TypeOptionsBase<TObject>>)
| 543 | * @returns {TypeManager} Static instance of type manager. |
| 544 | */ |
| 545 | public static applyTypeOptionsBase<TObject>(typeOptionsBase: Partial<TypeOptionsBase<TObject>>): TypeManager |
| 546 | { |
| 547 | return this.staticTypeManager.applyTypeOptionsBase(typeOptionsBase); |
| 548 | } |
| 549 | |
| 550 | /** |
| 551 | * Applies shared type options. |
no test coverage detected