node-insim
Version:
An InSim library for NodeJS with TypeScript support
18 lines (17 loc) • 538 B
TypeScript
import { SendablePacket } from './base';
import { PacketType } from './enums';
import type { PacketData } from './types';
export declare const MST_MSG_MAX_LENGTH = 64;
/**
* MSg Type - send to LFS to type message or command
*/
export declare class IS_MST extends SendablePacket {
readonly Size = 68;
readonly Type = PacketType.ISP_MST;
readonly ReqI = 0;
readonly Zero = 0;
/** Last byte must be zero */
Msg: string;
constructor(data?: IS_MST_Data);
}
export type IS_MST_Data = Required<PacketData<IS_MST>>;