OnDeserializeCallback
@tsed/json-mapper
Usage
typescript
import { OnDeserializeCallback } from "@tsed/json-mapper";
See /packages/specs/json-mapper/src/types/decorators/onDeserialize.ts.
Overview
ts
interface OnDeserializeCallback {
(value: any, ctx: JsonHookContext): any;
}
ts
(value: any, ctx: JsonHookContext): any;