* Unresolves type state. * * Calling this method has side effects by resetting type state. * * @returns {UnresolvedTypeState } Unresolved type state.
()
| 792 | * @returns {UnresolvedTypeState<TObject>} Unresolved type state. |
| 793 | */ |
| 794 | public unresolveTypeState(): UnresolvedTypeState<TObject> |
| 795 | { |
| 796 | const unresolvedTypeState = new UnresolvedTypeState<TObject>(this); |
| 797 | |
| 798 | this.currentTypeState = unresolvedTypeState; |
| 799 | |
| 800 | return unresolvedTypeState; |
| 801 | } |
| 802 | |
| 803 | /** |
| 804 | * Resolves custom value map the same way as it is done for the main options. |
no outgoing calls
no test coverage detected