vban
Version:
Node VBAN implementation
29 lines (28 loc) • 780 B
TypeScript
import { EServicePINGApplicationType } from './EServicePINGApplicationType.js';
import { EServicePINGFeatures } from './EServicePINGFeatures.js';
export interface IPacketPingData {
applicationType: EServicePINGApplicationType;
features: Array<EServicePINGFeatures>;
bitFeatureEx: number;
PreferredRate: number;
minRate: number;
maxRate: number;
color: {
red: number;
green: number;
blue: number;
};
nVersion: number;
GPSPosition: string;
userPosition: string;
langCode: string;
reservedASCII: string;
reservedEx: string;
reservedEx2: string;
deviceName: string;
manufacturerName: string;
applicationName: string;
hostname: string;
userName: string;
userComment: string;
}