* Applies type configuration in static context. * * @param {TypeFn } typeFn Type function. * @param {TypeConfiguration } typeConfiguration Type configuration. * * @returns {TypeManager} Static instance of type manager.
(typeFn: TypeFn<TObject>, typeConfiguration: TypeConfiguration<TObject>)
| 673 | * @returns {TypeManager} Static instance of type manager. |
| 674 | */ |
| 675 | public static applyTypeConfiguration<TObject>(typeFn: TypeFn<TObject>, typeConfiguration: TypeConfiguration<TObject>): TypeManager |
| 676 | { |
| 677 | return this.staticTypeManager.applyTypeConfiguration(typeFn, typeConfiguration); |
| 678 | } |
| 679 | |
| 680 | /** |
| 681 | * Applies type configuration. |
no test coverage detected