* Applies type options in static context. * * @param {TypeFn } typeFn Type function. * @param {TypeOptions } typeOptions Type options. * * @returns {TypeManager} Static instance of type manager.
(typeFn: TypeFn<TObject>, typeOptions: TypeOptions<TObject>)
| 614 | * @returns {TypeManager} Static instance of type manager. |
| 615 | */ |
| 616 | public static applyTypeOptions<TObject>(typeFn: TypeFn<TObject>, typeOptions: TypeOptions<TObject>): TypeManager |
| 617 | { |
| 618 | return this.staticTypeManager.applyTypeOptions(typeFn, typeOptions); |
| 619 | } |
| 620 | |
| 621 | /** |
| 622 | * Applies type options. |
no test coverage detected