UNPKG

@xmobitea/gn-typescript-client

Version:

GearN Typescript Client SDK by XmobiTea (Pro)

10 lines (9 loc) 226 B
import { encode, decode } from "@msgpack/msgpack"; export class MessagePackConverterService { static serialize(tObj) { return encode(tObj); } static deserialize(data) { return decode(data); } }