Skip to content

BeforeDeserializeCallback

@tsed/json-mapper

Usage

typescript
import { BeforeDeserializeCallback } from "@tsed/json-mapper";

See /packages/specs/json-mapper/src/types/decorators/beforeDeserialize.ts.

Overview

ts
interface BeforeDeserializeCallback {
    (value: any, ctx: JsonHookContext): any;
}

ts
(value: any, ctx: JsonHookContext): any;

Released under the MIT License.