mirror of
https://github.com/CommunityOx/ox_lib.git
synced 2026-08-17 15:06:02 +01:00
8 lines
364 B
TypeScript
8 lines
364 B
TypeScript
import type { VehicleProperties } from '../../'
|
|
|
|
export const getVehicleProperties = (vehicle: number): VehicleProperties =>
|
|
exports.ox_lib.getVehicleProperties(vehicle);
|
|
|
|
export const setVehicleProperties = (vehicle: number, props: Partial<VehicleProperties>, fixVehicle?: boolean): boolean =>
|
|
exports.ox_lib.setVehicleProperties(vehicle, props, fixVehicle);
|