Files
ox_lib/package/client/resource/vehicleProperties/index.ts
T

8 lines
364 B
TypeScript
Raw Normal View History

import type { VehicleProperties } from '../../'
2022-09-15 10:18:49 +02:00
export const getVehicleProperties = (vehicle: number): VehicleProperties =>
exports.ox_lib.getVehicleProperties(vehicle);
2022-09-15 10:18:49 +02:00
export const setVehicleProperties = (vehicle: number, props: Partial<VehicleProperties>, fixVehicle?: boolean): boolean =>
exports.ox_lib.setVehicleProperties(vehicle, props, fixVehicle);