fix(types): optional params in getClosest* (#519)

This commit is contained in:
ANTOND
2024-03-19 08:01:52 +01:00
committed by GitHub
parent 0e00ff57ff
commit 10db769f41
4 changed files with 6 additions and 6 deletions

View File

@@ -1,6 +1,6 @@
---@param coords vector3 The coords to check from.
---@param maxDistance number The max distance to check.
---@param includePlayerVehicle boolean Whether or not to include the player's current vehicle. Ignored on the server.
---@param maxDistance? number The max distance to check.
---@param includePlayerVehicle? boolean Whether or not to include the player's current vehicle. Ignored on the server.
---@return number? vehicle
---@return vector3? vehicleCoords
function lib.getClosestVehicle(coords, maxDistance, includePlayerVehicle)