@nativewrappers/client
Version:
Javascript/Typescript wrapper for the FiveM natives
14 lines (13 loc) • 494 B
TypeScript
import { Vehicle } from './Vehicle';
import { VehicleWheel } from './VehicleWheel';
import { VehicleWheelIndex } from '../enums';
export declare class VehicleWheelCollection {
private _owner;
private readonly _vehicleWheels;
constructor(owner: Vehicle);
getWheel(index: VehicleWheelIndex): VehicleWheel | undefined;
getAllWheels(): (VehicleWheel | null | undefined)[];
burstAllWheels(): void;
fixAllWheels(): void;
hasWheel(wheel: VehicleWheelIndex): boolean;
}