From beba645aad2b5c3ece6235027199796668d81ad2 Mon Sep 17 00:00:00 2001 From: xshady <54737754+xxshady@users.noreply.github.com> Date: Wed, 8 May 2024 23:12:16 +0300 Subject: [PATCH] fix(client): add missing Ped.getByRemoteID (#314) --- client/index.d.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/client/index.d.ts b/client/index.d.ts index 3567083a..92b680aa 100644 --- a/client/index.d.ts +++ b/client/index.d.ts @@ -3927,6 +3927,11 @@ declare module "alt-client" { */ public static getByScriptID(scriptID: number): Ped | null; + /** + * Gets the ped with the given remote id + */ + public static getByRemoteID(id: number): Ped | null; + public static readonly all: readonly Ped[]; public static readonly streamedIn: readonly Ped[];