@tsed/json-mapper
Version:
Json mapper module for Ts.ED Framework
11 lines (10 loc) • 365 B
TypeScript
import { Type } from "@tsed/core";
import { JsonMapperMethods } from "../interfaces/JsonMapperMethods.js";
/**
* @ignore
*/
export declare function registerJsonTypeMapper(type: Type<any> | Symbol | string, token: Type<JsonMapperMethods>): void;
/**
* @ignore
*/
export declare function getJsonMapperTypes(): Map<Type<any> | Symbol | string, JsonMapperMethods>;