From db8ab77a453dc5f37aa8ef36382471efae8ccb1c Mon Sep 17 00:00:00 2001 From: xLuxy <67131061+xLuxy@users.noreply.github.com> Date: Thu, 13 Jun 2024 13:26:03 +0200 Subject: [PATCH] chore(client)!: Deprecate setWatermarkPosition and it's enum --- client/index.d.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/client/index.d.ts b/client/index.d.ts index 452d7fea..f2bb87a7 100644 --- a/client/index.d.ts +++ b/client/index.d.ts @@ -85,6 +85,7 @@ declare module "alt-client" { ForceVehicleTyreBurst = "FORCE_VEHICLE_TYRE_BURST", } + /** @deprecated This method will be removed in the next major release. (v17) */ export const enum WatermarkPosition { BottomRight = 0, TopRight = 1, @@ -3247,8 +3248,11 @@ declare module "alt-client" { * Change the position of the alt:V watermark. * * @param position Watermarkposition. + * @deprecated This method will be removed in the next major release. (v17) */ export function setWatermarkPosition(position: WatermarkPosition): void; + + /** @deprecated This method will be removed in the next major release. (v17) */ export function setWatermarkPosition(position: T): void; /**