UNPKG

@tsed/json-mapper

Version:
14 lines (13 loc) 323 B
import { registerJsonTypeMapper } from "../domain/JsonMapperTypesContainer.js"; /** * Register a new JsonMapper Type * @param types * @constructor */ export function JsonMapper(...types) { return (target) => { types.forEach((type) => { registerJsonTypeMapper(type, target); }); }; }