mirror of
https://github.com/CommunityOx/ox_lib.git
synced 2026-08-17 06:56:03 +01:00
12 lines
341 B
TypeScript
12 lines
341 B
TypeScript
import type { VehicleProperties } from 'shared';
|
|
|
|
export * from './acl';
|
|
export * from './locale';
|
|
export * from './callback';
|
|
export * from './version';
|
|
export * from './addCommand';
|
|
|
|
export function setVehicleProperties(vehicle: number, props: VehicleProperties) {
|
|
Entity(vehicle).state.set('ox_lib:setVehicleProperties', props, true)
|
|
}
|