From 61ddd4368f73b11b0e4fb433183fd5eb95aa271e Mon Sep 17 00:00:00 2001 From: PepeElToro41 Date: Thu, 16 Jan 2025 06:22:41 -0600 Subject: [PATCH] added ContentId alias --- include/roblox.d.ts | 2 ++ src/class/ClassGenerator.ts | 1 - 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/include/roblox.d.ts b/include/roblox.d.ts index 31d4bbfb5..f06825a9a 100644 --- a/include/roblox.d.ts +++ b/include/roblox.d.ts @@ -2710,6 +2710,8 @@ type Vector3int16Constructor = new (x?: number, y?: number, z?: number) => Vecto declare const Vector3int16: Vector3int16Constructor; +type ContentId = string; + // unusable internal studio classes interface QFont {} interface QDir {} diff --git a/src/class/ClassGenerator.ts b/src/class/ClassGenerator.ts index fcb898279..14edc166c 100644 --- a/src/class/ClassGenerator.ts +++ b/src/class/ClassGenerator.ts @@ -333,7 +333,6 @@ const VALUE_TYPE_MAP = new Map([ ["BinaryString", null], ["bool", "boolean"], ["Connection", "RBXScriptConnection"], - ["ContentId", "string"], ["CoordinateFrame", "CFrame"], ["Dictionary", "object"], ["double", "number"],