node-insim
Version:
An InSim library for NodeJS with TypeScript support
14 lines (13 loc) • 394 B
TypeScript
import { Struct } from '../base';
import type { StructData } from '../types';
export declare class NodeLap extends Struct {
/** Current path node */
Node: number;
/** Current lap */
Lap: number;
/** Player's unique id */
PLID: number;
/** Current race position: 0 = unknown, 1 = leader, etc... */
Position: number;
constructor(data?: StructData<NodeLap>);
}