* Deserializes provided value using context. * * @param {TypeLike } x Some value. * * @returns {TypeLike } Value deserialized by context.
(x: TypeLike<any>)
| 368 | * @returns {TypeLike<TObject>} Value deserialized by context. |
| 369 | */ |
| 370 | public deserialize(x: TypeLike<any>): TypeLike<TObject> |
| 371 | { |
| 372 | return this.serializer.deserialize(x, this); |
| 373 | } |
| 374 | |
| 375 | /** |
| 376 | * Defines reference. |
nothing calls this directly
no test coverage detected