UNPKG
@communityox/ox_lib
Version:
latest (3.32.1)
3.32.1
3.32.0
3.31.4
3.31.3
3.31.2
3.31.1
3.31.0
3.30.10
3.30.9
3.30.8
3.30.7
JS/TS wrapper for ox_lib exports
communityox/ox_lib
@communityox/ox_lib
/
shared
/
resource
/
getNearbyVehicles
/
index.d.ts
8 lines
(7 loc)
•
261 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
{
Vector3
}
from
"@nativewrappers/fivem"
;
interface
NearbyVehicle
{
vehicle
:
number
;
coords
:
Vector3
; }
export
declare
function
getNearbyVehicles
(
coords
:
Vector3
,
maxDistance
?:
number
,
includePlayerVehicle
?:
boolean
):
NearbyVehicle
[];
export
{};