node-insim
Version:
An InSim library for NodeJS with TypeScript support
40 lines (39 loc) • 1.72 kB
JavaScript
export var DashLights;
(function (DashLights) {
/** Shift light */
DashLights[DashLights["DL_SHIFT"] = 1] = "DL_SHIFT";
/** High beam */
DashLights[DashLights["DL_FULLBEAM"] = 2] = "DL_FULLBEAM";
/** Handbrake */
DashLights[DashLights["DL_HANDBRAKE"] = 4] = "DL_HANDBRAKE";
/** Pit speed limiter */
DashLights[DashLights["DL_PITSPEED"] = 8] = "DL_PITSPEED";
/** TC active or switched off */
DashLights[DashLights["DL_TC"] = 16] = "DL_TC";
/** Left turn signal */
DashLights[DashLights["DL_SIGNAL_L"] = 32] = "DL_SIGNAL_L";
/** Right turn signal */
DashLights[DashLights["DL_SIGNAL_R"] = 64] = "DL_SIGNAL_R";
/** Shared turn signal */
DashLights[DashLights["DL_SIGNAL_ANY"] = 128] = "DL_SIGNAL_ANY";
/** Oil pressure warning */
DashLights[DashLights["DL_OILWARN"] = 256] = "DL_OILWARN";
/** Battery warning */
DashLights[DashLights["DL_BATTERY"] = 512] = "DL_BATTERY";
/** ABS active or switched off */
DashLights[DashLights["DL_ABS"] = 1024] = "DL_ABS";
/** Engine damage */
DashLights[DashLights["DL_ENGINE"] = 2048] = "DL_ENGINE";
/** Rear fog light */
DashLights[DashLights["DL_FOG_REAR"] = 4096] = "DL_FOG_REAR";
/** Front fog light */
DashLights[DashLights["DL_FOG_FRONT"] = 8192] = "DL_FOG_FRONT";
/** Low beam */
DashLights[DashLights["DL_LOWBEAM"] = 16384] = "DL_LOWBEAM";
/** Low fuel warning light */
DashLights[DashLights["DL_FUELWARN"] = 32768] = "DL_FUELWARN";
/** Sidelights */
DashLights[DashLights["DL_SIDELIGHTS"] = 65536] = "DL_SIDELIGHTS";
/** Neutral */
DashLights[DashLights["DL_NEUTRAL"] = 131072] = "DL_NEUTRAL";
})(DashLights || (DashLights = {}));