import {BaseMessage} from "../BaseMessage"; /** * Connection validation message that is send from server to client, when client connect. */ export interface HandShake extends BaseMessage { /** * Version of framework which is used on server side. * @type {string} */ FrameworkVersion: string; /** * Collection of available compressors. * @type {string[]} */ PacketCompressors: Array; /** * Collection of available encrypts. * @type {string[]} */ PacketEncryptors: Array; /** * Collection of available serializers. * @type {string[]} */ PacketSerializers: Array; }