import {Enum} from "./Enum"; import {EnumValue} from "./EnumValue"; /** * Type of serializer. */ export interface SerializerType extends Enum { /** * Serializer of JSON packet. * @type {EnumValue} */ readonly JsonPacketSerializer: EnumValue; /** * Serializer of MsgPack packet. * @type {EnumValue} */ readonly MsgPackSerializer: EnumValue; }