@rbxts/types 1.0.846 → 1.0.847

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -66,6 +66,7 @@ interface Services {
66
66
  ExperienceStateCaptureService: ExperienceStateCaptureService;
67
67
  ExplorerServiceVisibilityService: ExplorerServiceVisibilityService;
68
68
  FaceAnimatorService: FaceAnimatorService;
69
+ FacialAgeEstimationService: FacialAgeEstimationService;
69
70
  FacialAnimationRecordingService: FacialAnimationRecordingService;
70
71
  FacialAnimationStreamingServiceV2: FacialAnimationStreamingServiceV2;
71
72
  FeatureRestrictionManager: FeatureRestrictionManager;
@@ -176,6 +177,7 @@ interface Services {
176
177
  StudioUserService: StudioUserService;
177
178
  StudioWidgetsService: StudioWidgetsService;
178
179
  StylingService: StylingService;
180
+ SystemThemeService: SystemThemeService;
179
181
  TeamCreateData: TeamCreateData;
180
182
  TeamCreatePublishService: TeamCreatePublishService;
181
183
  TeamCreateService: TeamCreateService;
@@ -1234,6 +1236,8 @@ interface EditableMesh extends RBXObject {
1234
1236
  */
1235
1237
  GetFaces(this: EditableMesh): Array<unknown>;
1236
1238
  /**
1239
+ * **Deprecated:**
1240
+ *
1237
1241
  * Returns a list of faces that use a given attribute ID.
1238
1242
  *
1239
1243
  * - **ThreadSafety**: Unsafe
@@ -1252,6 +1256,8 @@ interface EditableMesh extends RBXObject {
1252
1256
  * - **Tags**: CustomLuaState
1253
1257
  *
1254
1258
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetFacesWithColor)
1259
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1260
+ * @param colorId
1255
1261
  */
1256
1262
  GetFacesWithColor(this: EditableMesh, colorId: number): Array<unknown>;
1257
1263
  /**
@@ -1259,6 +1265,8 @@ interface EditableMesh extends RBXObject {
1259
1265
  * - **Tags**: CustomLuaState
1260
1266
  *
1261
1267
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetFacesWithNormal)
1268
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1269
+ * @param normalId
1262
1270
  */
1263
1271
  GetFacesWithNormal(this: EditableMesh, normalId: number): Array<unknown>;
1264
1272
  /**
@@ -1266,6 +1274,8 @@ interface EditableMesh extends RBXObject {
1266
1274
  * - **Tags**: CustomLuaState
1267
1275
  *
1268
1276
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetFacesWithUV)
1277
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1278
+ * @param uvId
1269
1279
  */
1270
1280
  GetFacesWithUV(this: EditableMesh, uvId: number): Array<unknown>;
1271
1281
  /**
@@ -1336,24 +1346,35 @@ interface EditableMesh extends RBXObject {
1336
1346
  * - **Tags**: CustomLuaState
1337
1347
  *
1338
1348
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVertexColors)
1349
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1350
+ * @param vertexId
1339
1351
  */
1340
1352
  GetVertexColors(this: EditableMesh, vertexId: number): Array<unknown>;
1341
1353
  /**
1342
1354
  * - **ThreadSafety**: Unsafe
1343
1355
  *
1344
1356
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVertexFaceColor)
1357
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1358
+ * @param vertexId
1359
+ * @param faceId
1345
1360
  */
1346
1361
  GetVertexFaceColor(this: EditableMesh, vertexId: number, faceId: number): number;
1347
1362
  /**
1348
1363
  * - **ThreadSafety**: Unsafe
1349
1364
  *
1350
1365
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVertexFaceNormal)
1366
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1367
+ * @param vertexId
1368
+ * @param faceId
1351
1369
  */
1352
1370
  GetVertexFaceNormal(this: EditableMesh, vertexId: number, faceId: number): number;
1353
1371
  /**
1354
1372
  * - **ThreadSafety**: Unsafe
1355
1373
  *
1356
1374
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVertexFaceUV)
1375
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1376
+ * @param vertexId
1377
+ * @param faceId
1357
1378
  */
1358
1379
  GetVertexFaceUV(this: EditableMesh, vertexId: number, faceId: number): number;
1359
1380
  /**
@@ -1361,6 +1382,8 @@ interface EditableMesh extends RBXObject {
1361
1382
  * - **Tags**: CustomLuaState
1362
1383
  *
1363
1384
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVertexFaces)
1385
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1386
+ * @param vertexId
1364
1387
  */
1365
1388
  GetVertexFaces(this: EditableMesh, vertexId: number): Array<unknown>;
1366
1389
  /**
@@ -1368,6 +1391,8 @@ interface EditableMesh extends RBXObject {
1368
1391
  * - **Tags**: CustomLuaState
1369
1392
  *
1370
1393
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVertexNormals)
1394
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1395
+ * @param vertexId
1371
1396
  */
1372
1397
  GetVertexNormals(this: EditableMesh, vertexId: number): Array<unknown>;
1373
1398
  /**
@@ -1375,6 +1400,8 @@ interface EditableMesh extends RBXObject {
1375
1400
  * - **Tags**: CustomLuaState
1376
1401
  *
1377
1402
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVertexUVs)
1403
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1404
+ * @param vertexId
1378
1405
  */
1379
1406
  GetVertexUVs(this: EditableMesh, vertexId: number): Array<unknown>;
1380
1407
  /**
@@ -1388,6 +1415,8 @@ interface EditableMesh extends RBXObject {
1388
1415
  */
1389
1416
  GetVertices(this: EditableMesh): Array<number>;
1390
1417
  /**
1418
+ * **Deprecated:**
1419
+ *
1391
1420
  * Returns a list of vertices that use a given attribute ID.
1392
1421
  *
1393
1422
  * - **ThreadSafety**: Unsafe
@@ -1406,6 +1435,8 @@ interface EditableMesh extends RBXObject {
1406
1435
  * - **Tags**: CustomLuaState
1407
1436
  *
1408
1437
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVerticesWithColor)
1438
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1439
+ * @param colorId
1409
1440
  */
1410
1441
  GetVerticesWithColor(this: EditableMesh, colorId: number): Array<unknown>;
1411
1442
  /**
@@ -1413,6 +1444,8 @@ interface EditableMesh extends RBXObject {
1413
1444
  * - **Tags**: CustomLuaState
1414
1445
  *
1415
1446
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVerticesWithNormal)
1447
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1448
+ * @param normalId
1416
1449
  */
1417
1450
  GetVerticesWithNormal(this: EditableMesh, normalId: number): Array<unknown>;
1418
1451
  /**
@@ -1420,6 +1453,8 @@ interface EditableMesh extends RBXObject {
1420
1453
  * - **Tags**: CustomLuaState
1421
1454
  *
1422
1455
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVerticesWithUV)
1456
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1457
+ * @param uvId
1423
1458
  */
1424
1459
  GetVerticesWithUV(this: EditableMesh, uvId: number): Array<unknown>;
1425
1460
  /**
@@ -1595,18 +1630,30 @@ interface EditableMesh extends RBXObject {
1595
1630
  * - **ThreadSafety**: Unsafe
1596
1631
  *
1597
1632
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#SetVertexFaceColor)
1633
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1634
+ * @param vertexId
1635
+ * @param faceId
1636
+ * @param colorId
1598
1637
  */
1599
1638
  SetVertexFaceColor(this: EditableMesh, vertexId: number, faceId: number, colorId: number): void;
1600
1639
  /**
1601
1640
  * - **ThreadSafety**: Unsafe
1602
1641
  *
1603
1642
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#SetVertexFaceNormal)
1643
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1644
+ * @param vertexId
1645
+ * @param faceId
1646
+ * @param normalId
1604
1647
  */
1605
1648
  SetVertexFaceNormal(this: EditableMesh, vertexId: number, faceId: number, normalId: number): void;
1606
1649
  /**
1607
1650
  * - **ThreadSafety**: Unsafe
1608
1651
  *
1609
1652
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#SetVertexFaceUV)
1653
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1654
+ * @param vertexId
1655
+ * @param faceId
1656
+ * @param uvId
1610
1657
  */
1611
1658
  SetVertexFaceUV(this: EditableMesh, vertexId: number, faceId: number, uvId: number): void;
1612
1659
  /**
@@ -2312,7 +2359,7 @@ interface AnalyticsService extends Instance {
2312
2359
  *
2313
2360
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnalyticsService#FireCustomEvent)
2314
2361
  * @param this Collection of methods that allows developers to track how users interact with their experiences.
2315
- * @param player The player who triggered the custom event. nil if not player related.
2362
+ * @param player The player who triggered the custom event. `nil` if not player related.
2316
2363
  * @param eventCategory User defined category. This should be the name of the event.
2317
2364
  * @param customData Optional. User defined data, could be a string, a number or a table.
2318
2365
  *
@@ -2377,7 +2424,7 @@ interface AnalyticsService extends Instance {
2377
2424
  *
2378
2425
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnalyticsService#FireLogEvent)
2379
2426
  * @param this Collection of methods that allows developers to track how users interact with their experiences.
2380
- * @param player The player who triggered the error event, nil if not player related.
2427
+ * @param player The player who triggered the error event, `nil` if not player related.
2381
2428
  * @param logLevel The specified log level (e.g. Debug, Error).
2382
2429
  * @param message User defined message.
2383
2430
  * @param debugInfo Optional. A dictionary which contains predefined keys including "errorCode" and "stackTrace". Both keys values are strings. stackTrace is a traceback of the current function call stack.
@@ -2644,7 +2691,7 @@ interface KeyframeSequence extends AnimationClip {
2644
2691
  */
2645
2692
  GetKeyframes(this: KeyframeSequence): Array<Keyframe>;
2646
2693
  /**
2647
- * This function removes a `Keyframe` from the `KeyframeSequence` by setting its parent to nil.
2694
+ * This function removes a `Keyframe` from the `KeyframeSequence` by setting its parent to `nil`.
2648
2695
  *
2649
2696
  * - **ThreadSafety**: Unsafe
2650
2697
  *
@@ -3412,6 +3459,12 @@ interface AssetService extends Instance {
3412
3459
  * @param editableMeshOptions Table containing options for the created `EditableMesh`. Currently no options are available since `FixedSize` will always be `false` for empty editable meshes.
3413
3460
  */
3414
3461
  CreateEditableMesh(this: AssetService, editableMeshOptions?: object): EditableMesh;
3462
+ /**
3463
+ * - **ThreadSafety**: Unsafe
3464
+ *
3465
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AssetService#CreateSurfaceAppearance)
3466
+ */
3467
+ CreateSurfaceAppearance(this: AssetService, content: object): SurfaceAppearance;
3415
3468
  /**
3416
3469
  * Uploads a new asset to Roblox from the given object.
3417
3470
  *
@@ -6422,7 +6475,7 @@ interface AvatarEditorService extends Instance {
6422
6475
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarEditorService#CheckApplyDefaultClothing)
6423
6476
  * @param this A service to support developer Avatar Editors.
6424
6477
  * @param humanoidDescription The HumanoidDescription to check if default clothing is required.
6425
- * @returns Returns a HumanoidDescription if default clothing was necessary. Otherwise returns nil.
6478
+ * @returns Returns a HumanoidDescription if default clothing was necessary. Otherwise returns `nil`.
6426
6479
  */
6427
6480
  CheckApplyDefaultClothing(this: AvatarEditorService, humanoidDescription: HumanoidDescription): HumanoidDescription;
6428
6481
  /**
@@ -7230,12 +7283,6 @@ interface RootImportData extends BaseImportData {
7230
7283
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RootImportData#ScaleUnit)
7231
7284
  */
7232
7285
  ScaleUnit: Enum.MeshScaleUnit;
7233
- /**
7234
- * - **ThreadSafety**: ReadSafe
7235
- *
7236
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RootImportData#UseSceneOriginAsCFrame)
7237
- */
7238
- UseSceneOriginAsCFrame: boolean;
7239
7286
  /**
7240
7287
  * - **ThreadSafety**: ReadSafe
7241
7288
  *
@@ -12000,7 +12047,7 @@ interface ContextActionService extends Instance {
12000
12047
  *
12001
12048
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ContextActionService#GetCurrentLocalToolIcon)
12002
12049
  * @param this A service used to bind user input to contextual actions.
12003
- * @returns A content string from the Tool's TextureId, or nil if one could not be found.
12050
+ * @returns A content string from the Tool's TextureId, or `nil` if one could not be found.
12004
12051
  */
12005
12052
  GetCurrentLocalToolIcon(this: ContextActionService): string;
12006
12053
  /**
@@ -14357,6 +14404,21 @@ interface Texture extends Decal {
14357
14404
  */
14358
14405
  StudsPerTileV: number;
14359
14406
  }
14407
+ /**
14408
+ * - **Tags**: NotCreatable, Service, NotReplicated
14409
+ *
14410
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/FacialAgeEstimationService)
14411
+ */
14412
+ interface FacialAgeEstimationService extends Instance {
14413
+ /**
14414
+ * **DO NOT USE!**
14415
+ *
14416
+ * This field exists to force TypeScript to recognize this as a nominal type
14417
+ * @hidden
14418
+ * @deprecated
14419
+ */
14420
+ readonly _nominal_FacialAgeEstimationService: unique symbol;
14421
+ }
14360
14422
  /**
14361
14423
  * - **Tags**: NotCreatable, Service, NotReplicated
14362
14424
  *
@@ -17433,12 +17495,14 @@ interface VideoDisplay extends GuiObject {
17433
17495
  * - **ThreadSafety**: Unsafe
17434
17496
  *
17435
17497
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoDisplay#GetInputPins)
17498
+ * @param this
17436
17499
  */
17437
17500
  GetInputPins(this: VideoDisplay): Array<unknown>;
17438
17501
  /**
17439
17502
  * - **ThreadSafety**: Unsafe
17440
17503
  *
17441
17504
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoDisplay#GetOutputPins)
17505
+ * @param this
17442
17506
  */
17443
17507
  GetOutputPins(this: VideoDisplay): Array<unknown>;
17444
17508
  /**
@@ -23259,7 +23323,7 @@ interface Keyframe extends Instance {
23259
23323
  */
23260
23324
  GetPoses(this: Keyframe): Array<Pose>;
23261
23325
  /**
23262
- * Removes a `KeyframeMarker` from the `Keyframe` by settings its `Instance.Parent` to nil.
23326
+ * Removes a `KeyframeMarker` from the `Keyframe` by settings its `Instance.Parent` to `nil`.
23263
23327
  *
23264
23328
  * - **ThreadSafety**: Unsafe
23265
23329
  *
@@ -23269,7 +23333,7 @@ interface Keyframe extends Instance {
23269
23333
  */
23270
23334
  RemoveMarker(this: Keyframe, marker: KeyframeMarker): void;
23271
23335
  /**
23272
- * Removes a `Pose` from the `Keyframe` by setting its `Instance.Parent` to nil.
23336
+ * Removes a `Pose` from the `Keyframe` by setting its `Instance.Parent` to `nil`.
23273
23337
  *
23274
23338
  * - **ThreadSafety**: Unsafe
23275
23339
  *
@@ -24902,6 +24966,8 @@ interface MarketplaceService extends Instance {
24902
24966
  ProcessReceipt: ((receiptInfo: ReceiptInfo) => Enum.ProductPurchaseDecision) | undefined;
24903
24967
  }
24904
24968
  /**
24969
+ * The service responsible for managing custom matchmaking data.
24970
+ *
24905
24971
  * - **Tags**: NotCreatable, Service, NotReplicated
24906
24972
  *
24907
24973
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MatchmakingService)
@@ -24916,28 +24982,37 @@ interface MatchmakingService extends Instance {
24916
24982
  */
24917
24983
  readonly _nominal_MatchmakingService: unique symbol;
24918
24984
  /**
24985
+ * Retrieves the value of a specific server attribute.
24986
+ *
24919
24987
  * - **ThreadSafety**: Unsafe
24920
24988
  *
24921
24989
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MatchmakingService#GetServerAttribute)
24922
- * @param this
24923
- * @param name
24990
+ * @param this The service responsible for managing custom matchmaking data.
24991
+ * @param name The name of the server attribute. Limited to a maximum of 50 characters.
24992
+ * @returns Returns the server attribute value if the attribute is found and if the error is `nil`. Otherwise, returns `nil` for the attribute value and an error message.
24924
24993
  */
24925
24994
  GetServerAttribute(this: MatchmakingService, name: string): unknown;
24926
24995
  /**
24996
+ * Initiates the server attribute schema and its values to test in Studio.
24997
+ *
24927
24998
  * - **ThreadSafety**: Unsafe
24928
24999
  *
24929
25000
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MatchmakingService#InitializeServerAttributesForStudio)
24930
- * @param this
24931
- * @param serverAttributes
25001
+ * @param this The service responsible for managing custom matchmaking data.
25002
+ * @param serverAttributes An array of attribute name-value pairs.
25003
+ * @returns Returns `true` if the call succeeded. Otherwise, returns `false` and an error message.
24932
25004
  */
24933
25005
  InitializeServerAttributesForStudio(this: MatchmakingService, serverAttributes: object): unknown;
24934
25006
  /**
25007
+ * Assigns a value to a specific server attribute.
25008
+ *
24935
25009
  * - **ThreadSafety**: Unsafe
24936
25010
  *
24937
25011
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MatchmakingService#SetServerAttribute)
24938
- * @param this
24939
- * @param name
24940
- * @param value
25012
+ * @param this The service responsible for managing custom matchmaking data.
25013
+ * @param name The name of the server attribute. Limited to a maximum of 50 characters.
25014
+ * @param value The value of the server attribute. Limited to a maximum of 50 characters.
25015
+ * @returns Returns `true` if the call succeeded. Otherwise, returns `false` and an error message.
24941
25016
  */
24942
25017
  SetServerAttribute(this: MatchmakingService, name: string, value: unknown): unknown;
24943
25018
  }
@@ -25092,7 +25167,7 @@ interface MemoryStoreHashMap extends Instance {
25092
25167
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MemoryStoreHashMap#GetAsync)
25093
25168
  * @param this Provides access to a hash map within `MemoryStoreService`.
25094
25169
  * @param key The key whose value you want to retrieve.
25095
- * @returns The value, or nil if the key doesn't exist.
25170
+ * @returns The value, or `nil` if the key doesn't exist.
25096
25171
  */
25097
25172
  GetAsync(this: MemoryStoreHashMap, key: string): unknown;
25098
25173
  /**
@@ -25280,8 +25355,8 @@ interface MemoryStoreSortedMap extends Instance {
25280
25355
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MemoryStoreSortedMap#GetAsync)
25281
25356
  * @param this Provides access to a sorted map within `MemoryStoreService`.
25282
25357
  * @param key Key whose value and sort key to retrieve.
25283
- * @returns A tuple of two values: - Key value, or nil -- if there's no item with the specified key.
25284
- * - Sort key, or nil -- if there's no sort key associated with the specified key.
25358
+ * @returns A tuple of two values: - Key value, or `nil` if there's no item with the specified key.
25359
+ * - Sort key, or `nil` if there's no sort key associated with the specified key.
25285
25360
  */
25286
25361
  GetAsync(this: MemoryStoreSortedMap, key: string): LuaTuple<[
25287
25362
  value?: unknown,
@@ -26721,13 +26796,13 @@ interface BasePart extends PVInstance {
26721
26796
  */
26722
26797
  GetMass(this: BasePart): number;
26723
26798
  /**
26724
- * Returns the current player who is the network owner of this part, or nil in case of the server.
26799
+ * Returns the current player who is the network owner of this part, or `nil` in case of the server.
26725
26800
  *
26726
26801
  * - **ThreadSafety**: Safe
26727
26802
  *
26728
26803
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/BasePart#GetNetworkOwner)
26729
26804
  * @param this The abstract base class for in-world objects that physically interact.
26730
- * @returns The current player who is the network owner of this part, or nil in case of the server.
26805
+ * @returns The current player who is the network owner of this part, or `nil` in case of the server.
26731
26806
  */
26732
26807
  GetNetworkOwner(this: BasePart): Player | undefined;
26733
26808
  /**
@@ -32413,7 +32488,7 @@ interface Pose extends PoseBase {
32413
32488
  */
32414
32489
  GetSubPoses(this: Pose): Array<Instance>;
32415
32490
  /**
32416
- * Removes a sub `Pose` from the `Pose` by parenting it to nil.
32491
+ * Removes a sub `Pose` from the `Pose` by parenting it to `nil`.
32417
32492
  *
32418
32493
  * - **ThreadSafety**: Unsafe
32419
32494
  *
@@ -34124,6 +34199,8 @@ interface SerializationService extends Instance {
34124
34199
  * - **Tags**: Yields
34125
34200
  *
34126
34201
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SerializationService#DeserializeInstancesAsync)
34202
+ * @param this
34203
+ * @param buffer
34127
34204
  */
34128
34205
  DeserializeInstancesAsync(this: SerializationService, buffer: buffer): Array<Instance>;
34129
34206
  /**
@@ -34131,6 +34208,8 @@ interface SerializationService extends Instance {
34131
34208
  * - **Tags**: Yields
34132
34209
  *
34133
34210
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SerializationService#SerializeInstancesAsync)
34211
+ * @param this
34212
+ * @param inputInstances
34134
34213
  */
34135
34214
  SerializeInstancesAsync(this: SerializationService, inputInstances: Array<Instance>): buffer;
34136
34215
  }
@@ -34947,6 +35026,13 @@ interface SocialService extends Instance {
34947
35026
  * @returns Whether the specified player can send an invite.
34948
35027
  */
34949
35028
  CanSendGameInviteAsync(this: SocialService, player: Player, recipientId?: number): boolean;
35029
+ /**
35030
+ * - **ThreadSafety**: Unsafe
35031
+ * - **Tags**: Yields
35032
+ *
35033
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SocialService#GetPartyAsync)
35034
+ */
35035
+ GetPartyAsync(this: SocialService, partyId: string): Array<unknown>;
34950
35036
  /**
34951
35037
  * Fires when a player's call invite state changes.
34952
35038
  *
@@ -36958,6 +37044,21 @@ interface SurfaceAppearance extends Instance {
36958
37044
  */
36959
37045
  get RoughnessMapContent(): Content;
36960
37046
  }
37047
+ /**
37048
+ * - **Tags**: NotCreatable, Service, NotReplicated
37049
+ *
37050
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SystemThemeService)
37051
+ */
37052
+ interface SystemThemeService extends Instance {
37053
+ /**
37054
+ * **DO NOT USE!**
37055
+ *
37056
+ * This field exists to force TypeScript to recognize this as a nominal type
37057
+ * @hidden
37058
+ * @deprecated
37059
+ */
37060
+ readonly _nominal_SystemThemeService: unique symbol;
37061
+ }
36961
37062
  /**
36962
37063
  * The `Team` class represents a faction in a Roblox place. The only valid parent for a Team is in the `Teams` service.
36963
37064
  *
@@ -42578,18 +42679,21 @@ interface VideoPlayer extends Instance {
42578
42679
  * - **ThreadSafety**: Unsafe
42579
42680
  *
42580
42681
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoPlayer#GetInputPins)
42682
+ * @param this
42581
42683
  */
42582
42684
  GetInputPins(this: VideoPlayer): Array<unknown>;
42583
42685
  /**
42584
42686
  * - **ThreadSafety**: Unsafe
42585
42687
  *
42586
42688
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoPlayer#GetOutputPins)
42689
+ * @param this
42587
42690
  */
42588
42691
  GetOutputPins(this: VideoPlayer): Array<unknown>;
42589
42692
  /**
42590
42693
  * - **ThreadSafety**: Unsafe
42591
42694
  *
42592
42695
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoPlayer#Pause)
42696
+ * @param this
42593
42697
  */
42594
42698
  Pause(this: VideoPlayer): void;
42595
42699
  /**
@@ -42603,6 +42707,7 @@ interface VideoPlayer extends Instance {
42603
42707
  * - **ThreadSafety**: Unsafe
42604
42708
  *
42605
42709
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoPlayer#Unload)
42710
+ * @param this
42606
42711
  */
42607
42712
  Unload(this: VideoPlayer): void;
42608
42713
  /**
@@ -42610,6 +42715,7 @@ interface VideoPlayer extends Instance {
42610
42715
  * - **Tags**: Yields
42611
42716
  *
42612
42717
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoPlayer#LoadAsync)
42718
+ * @param this
42613
42719
  */
42614
42720
  LoadAsync(this: VideoPlayer): Enum.AssetFetchStatus;
42615
42721
  /**
@@ -69,6 +69,7 @@ interface Services {
69
69
  ExperienceStateCaptureService: ExperienceStateCaptureService;
70
70
  ExplorerServiceVisibilityService: ExplorerServiceVisibilityService;
71
71
  FaceAnimatorService: FaceAnimatorService;
72
+ FacialAgeEstimationService: FacialAgeEstimationService;
72
73
  FacialAnimationRecordingService: FacialAnimationRecordingService;
73
74
  FacialAnimationStreamingServiceV2: FacialAnimationStreamingServiceV2;
74
75
  FeatureRestrictionManager: FeatureRestrictionManager;
@@ -192,6 +193,7 @@ interface Services {
192
193
  StudioUserService: StudioUserService;
193
194
  StudioWidgetsService: StudioWidgetsService;
194
195
  StylingService: StylingService;
196
+ SystemThemeService: SystemThemeService;
195
197
  TaskScheduler: TaskScheduler;
196
198
  TeamCreateData: TeamCreateData;
197
199
  TeamCreatePublishService: TeamCreatePublishService;
@@ -5003,6 +5005,21 @@ interface Texture extends Decal {
5003
5005
  */
5004
5006
  readonly _nominal_Texture: unique symbol;
5005
5007
  }
5008
+ /**
5009
+ * - **Tags**: NotCreatable, Service, NotReplicated
5010
+ *
5011
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/FacialAgeEstimationService)
5012
+ */
5013
+ interface FacialAgeEstimationService extends Instance {
5014
+ /**
5015
+ * **DO NOT USE!**
5016
+ *
5017
+ * This field exists to force TypeScript to recognize this as a nominal type
5018
+ * @hidden
5019
+ * @deprecated
5020
+ */
5021
+ readonly _nominal_FacialAgeEstimationService: unique symbol;
5022
+ }
5006
5023
  /**
5007
5024
  * - **Tags**: NotCreatable, Service, NotReplicated
5008
5025
  *
@@ -7389,9 +7406,9 @@ interface AuroraScript extends LuaSourceContainer {
7389
7406
  /**
7390
7407
  * - **ThreadSafety**: ReadSafe
7391
7408
  *
7392
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraScript#DumpMispredictions)
7409
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraScript#EnableCulling)
7393
7410
  */
7394
- DumpMispredictions: boolean;
7411
+ EnableCulling: boolean;
7395
7412
  /**
7396
7413
  * - **ThreadSafety**: ReadSafe
7397
7414
  *
@@ -7401,15 +7418,9 @@ interface AuroraScript extends LuaSourceContainer {
7401
7418
  /**
7402
7419
  * - **ThreadSafety**: ReadSafe
7403
7420
  *
7404
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraScript#LODDistanceFactor)
7421
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraScript#LODCriticality)
7405
7422
  */
7406
- LODDistanceFactor: number;
7407
- /**
7408
- * - **ThreadSafety**: ReadSafe
7409
- *
7410
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraScript#LODFrequencyFactor)
7411
- */
7412
- LODFrequencyFactor: number;
7423
+ LODCriticality: number;
7413
7424
  /**
7414
7425
  * - **ThreadSafety**: ReadSafe
7415
7426
  *
@@ -7568,6 +7579,8 @@ interface MarketplaceService extends Instance {
7568
7579
  readonly _nominal_MarketplaceService: unique symbol;
7569
7580
  }
7570
7581
  /**
7582
+ * The service responsible for managing custom matchmaking data.
7583
+ *
7571
7584
  * - **Tags**: NotCreatable, Service, NotReplicated
7572
7585
  *
7573
7586
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MatchmakingService)
@@ -9619,7 +9632,7 @@ interface Plugin extends Instance {
9619
9632
  */
9620
9633
  GetSelectedRibbonTool(this: Plugin): Enum.RibbonTool;
9621
9634
  /**
9622
- * Retrieves a previously stored value with the given key, or nil if the given key doesn't exist.
9635
+ * Retrieves a previously stored value with the given key, or `nil` if the given key doesn't exist.
9623
9636
  *
9624
9637
  * - **ThreadSafety**: Unsafe
9625
9638
  *
@@ -10052,7 +10065,7 @@ interface PluginMenu extends Instance {
10052
10065
  *
10053
10066
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PluginMenu#ShowAsync)
10054
10067
  * @param this A context menu that can be shown in Studio. Displays a list of `PluginActions` and supports submenus.
10055
- * @returns The `PluginAction` item that was selected or nil.
10068
+ * @returns The `PluginAction` item that was selected or `nil`.
10056
10069
  */
10057
10070
  ShowAsync(this: PluginMenu): Instance | undefined;
10058
10071
  }
@@ -11097,7 +11110,7 @@ interface ScriptEditorService extends Instance {
11097
11110
  */
11098
11111
  DeregisterScriptAnalysisCallback(this: ScriptEditorService, name: string): void;
11099
11112
  /**
11100
- * Returns the open `ScriptDocument` corresponding to the given `LuaSourceContainer`, or nil if the given script is not open.
11113
+ * Returns the open `ScriptDocument` corresponding to the given `LuaSourceContainer`, or `nil` if the given script is not open.
11101
11114
  *
11102
11115
  * - **ThreadSafety**: Unsafe
11103
11116
  *
@@ -12575,8 +12588,8 @@ interface StudioService extends Instance {
12575
12588
  *
12576
12589
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StudioService#PromptImportFile)
12577
12590
  * @param this Provides access to configuration of Roblox Studio and allows importing files from the user's file system.
12578
- * @param fileTypeFilter A list of file types that the user is allowed to select. File types are formatted without a period. For example, {"jpg", "png"} would allow only a JPG or PNG file to be selected. If no filter is provided, the filter is nil and allows the user to select any file type.
12579
- * @returns The imported `File`. Returns nil if no files were selected, or if the selected file was too large (FileSize greater than 100 megabytes).
12591
+ * @param fileTypeFilter A list of file types that the user is allowed to select. File types are formatted without a period. For example, {"jpg", "png"} would allow only a JPG or PNG file to be selected. If no filter is provided, the filter is `nil` and allows the user to select any file type.
12592
+ * @returns The imported `File`. Returns `nil` if no files were selected, or if the selected file was too large (FileSize greater than 100 megabytes).
12580
12593
  */
12581
12594
  PromptImportFile(this: StudioService, fileTypeFilter?: Array<unknown>): Instance | undefined;
12582
12595
  /**
@@ -12587,8 +12600,8 @@ interface StudioService extends Instance {
12587
12600
  *
12588
12601
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StudioService#PromptImportFiles)
12589
12602
  * @param this Provides access to configuration of Roblox Studio and allows importing files from the user's file system.
12590
- * @param fileTypeFilter A list of file types that the user is allowed to select. File types are formatted without a period. For example, {"jpg", "png"} would allow only JPG and PNG files to be selected. If no filter is provided, the filter is nil and allows the user to select any file type.
12591
- * @returns The imported `Files`. Returns an empty list if no files were selected. Returns nil if the user selected one or more files that were too large (FileSize greater than 100 megabytes).
12603
+ * @param fileTypeFilter A list of file types that the user is allowed to select. File types are formatted without a period. For example, {"jpg", "png"} would allow only JPG and PNG files to be selected. If no filter is provided, the filter is `nil` and allows the user to select any file type.
12604
+ * @returns The imported `Files`. Returns an empty list if no files were selected. Returns `nil` if the user selected one or more files that were too large (FileSize greater than 100 megabytes).
12592
12605
  */
12593
12606
  PromptImportFiles(this: StudioService, fileTypeFilter?: Array<unknown>): Array<Instance>;
12594
12607
  }
@@ -12814,6 +12827,21 @@ interface SurfaceAppearance extends Instance {
12814
12827
  */
12815
12828
  set RoughnessMapContent(value: Content);
12816
12829
  }
12830
+ /**
12831
+ * - **Tags**: NotCreatable, Service, NotReplicated
12832
+ *
12833
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SystemThemeService)
12834
+ */
12835
+ interface SystemThemeService extends Instance {
12836
+ /**
12837
+ * **DO NOT USE!**
12838
+ *
12839
+ * This field exists to force TypeScript to recognize this as a nominal type
12840
+ * @hidden
12841
+ * @deprecated
12842
+ */
12843
+ readonly _nominal_SystemThemeService: unique symbol;
12844
+ }
12817
12845
  /**
12818
12846
  * Collection of settings for the *Task Scheduler* feature.
12819
12847
  *
@@ -1689,50 +1689,59 @@ declare namespace Enum {
1689
1689
  }
1690
1690
  export type AnnotationEditingMode = AnnotationEditingMode.None | AnnotationEditingMode.PlacingNew | AnnotationEditingMode.WritingNew;
1691
1691
  /**
1692
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnnotationRequestResult)
1692
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnnotationRequestStatus)
1693
1693
  */
1694
- export namespace AnnotationRequestResult {
1694
+ export namespace AnnotationRequestStatus {
1695
1695
  /**
1696
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnnotationRequestResult#Success)
1696
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnnotationRequestStatus#Success)
1697
1697
  */
1698
1698
  export interface Success extends globalThis.EnumItem {
1699
1699
  Name: "Success";
1700
1700
  Value: 0;
1701
- EnumType: typeof globalThis.Enum.AnnotationRequestResult;
1701
+ EnumType: typeof globalThis.Enum.AnnotationRequestStatus;
1702
1702
  }
1703
1703
  export const Success: Success;
1704
1704
  /**
1705
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnnotationRequestResult#ErrorInternalFailure)
1705
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnnotationRequestStatus#Loading)
1706
+ */
1707
+ export interface Loading extends globalThis.EnumItem {
1708
+ Name: "Loading";
1709
+ Value: 1;
1710
+ EnumType: typeof globalThis.Enum.AnnotationRequestStatus;
1711
+ }
1712
+ export const Loading: Loading;
1713
+ /**
1714
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnnotationRequestStatus#ErrorInternalFailure)
1706
1715
  */
1707
1716
  export interface ErrorInternalFailure extends globalThis.EnumItem {
1708
1717
  Name: "ErrorInternalFailure";
1709
- Value: 1;
1710
- EnumType: typeof globalThis.Enum.AnnotationRequestResult;
1718
+ Value: 2;
1719
+ EnumType: typeof globalThis.Enum.AnnotationRequestStatus;
1711
1720
  }
1712
1721
  export const ErrorInternalFailure: ErrorInternalFailure;
1713
1722
  /**
1714
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnnotationRequestResult#ErrorNotFound)
1723
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnnotationRequestStatus#ErrorNotFound)
1715
1724
  */
1716
1725
  export interface ErrorNotFound extends globalThis.EnumItem {
1717
1726
  Name: "ErrorNotFound";
1718
- Value: 2;
1719
- EnumType: typeof globalThis.Enum.AnnotationRequestResult;
1727
+ Value: 3;
1728
+ EnumType: typeof globalThis.Enum.AnnotationRequestStatus;
1720
1729
  }
1721
1730
  export const ErrorNotFound: ErrorNotFound;
1722
1731
  /**
1723
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnnotationRequestResult#ErrorModerated)
1732
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnnotationRequestStatus#ErrorModerated)
1724
1733
  */
1725
1734
  export interface ErrorModerated extends globalThis.EnumItem {
1726
1735
  Name: "ErrorModerated";
1727
- Value: 3;
1728
- EnumType: typeof globalThis.Enum.AnnotationRequestResult;
1736
+ Value: 4;
1737
+ EnumType: typeof globalThis.Enum.AnnotationRequestStatus;
1729
1738
  }
1730
1739
  export const ErrorModerated: ErrorModerated;
1731
- export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AnnotationRequestResult>;
1732
- export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AnnotationRequestResult | undefined;
1733
- export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AnnotationRequestResult | undefined;
1740
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AnnotationRequestStatus>;
1741
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AnnotationRequestStatus | undefined;
1742
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AnnotationRequestStatus | undefined;
1734
1743
  }
1735
- export type AnnotationRequestResult = AnnotationRequestResult.Success | AnnotationRequestResult.ErrorInternalFailure | AnnotationRequestResult.ErrorNotFound | AnnotationRequestResult.ErrorModerated;
1744
+ export type AnnotationRequestStatus = AnnotationRequestStatus.Success | AnnotationRequestStatus.Loading | AnnotationRequestStatus.ErrorInternalFailure | AnnotationRequestStatus.ErrorNotFound | AnnotationRequestStatus.ErrorModerated;
1736
1745
  /**
1737
1746
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnnotationRequestType)
1738
1747
  */
@@ -10198,6 +10207,42 @@ declare namespace Enum {
10198
10207
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.FACSDataLod | undefined;
10199
10208
  }
10200
10209
  export type FACSDataLod = FACSDataLod.LOD0 | FACSDataLod.LOD1 | FACSDataLod.LODCount;
10210
+ /**
10211
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacialAgeEstimationResultType)
10212
+ */
10213
+ export namespace FacialAgeEstimationResultType {
10214
+ /**
10215
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacialAgeEstimationResultType#Complete)
10216
+ */
10217
+ export interface Complete extends globalThis.EnumItem {
10218
+ Name: "Complete";
10219
+ Value: 0;
10220
+ EnumType: typeof globalThis.Enum.FacialAgeEstimationResultType;
10221
+ }
10222
+ export const Complete: Complete;
10223
+ /**
10224
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacialAgeEstimationResultType#Cancel)
10225
+ */
10226
+ export interface Cancel extends globalThis.EnumItem {
10227
+ Name: "Cancel";
10228
+ Value: 1;
10229
+ EnumType: typeof globalThis.Enum.FacialAgeEstimationResultType;
10230
+ }
10231
+ export const Cancel: Cancel;
10232
+ /**
10233
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacialAgeEstimationResultType#Error)
10234
+ */
10235
+ export interface Error extends globalThis.EnumItem {
10236
+ Name: "Error";
10237
+ Value: 2;
10238
+ EnumType: typeof globalThis.Enum.FacialAgeEstimationResultType;
10239
+ }
10240
+ export const Error: Error;
10241
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.FacialAgeEstimationResultType>;
10242
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.FacialAgeEstimationResultType | undefined;
10243
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.FacialAgeEstimationResultType | undefined;
10244
+ }
10245
+ export type FacialAgeEstimationResultType = FacialAgeEstimationResultType.Complete | FacialAgeEstimationResultType.Cancel | FacialAgeEstimationResultType.Error;
10201
10246
  /**
10202
10247
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacialAnimationStreamingState)
10203
10248
  */
@@ -26506,7 +26551,7 @@ declare namespace Enum {
26506
26551
  */
26507
26552
  export namespace StudioStyleGuideColor {
26508
26553
  /**
26509
- * The primary background color used by the ribbon bar and windows.
26554
+ * The primary background color used by the toolbar and windows.
26510
26555
  *
26511
26556
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#MainBackground)
26512
26557
  */
@@ -26539,7 +26584,7 @@ declare namespace Enum {
26539
26584
  }
26540
26585
  export const Dropdown: Dropdown;
26541
26586
  /**
26542
- * The background color of tooltips, like those seen when hovering over buttons on the ribbon bar or properties in the Properties window.
26587
+ * The background color of tooltips, like those seen when hovering over buttons on the toolbar or properties in the Properties window.
26543
26588
  *
26544
26589
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#Tooltip)
26545
26590
  */
@@ -26657,7 +26702,7 @@ declare namespace Enum {
26657
26702
  }
26658
26703
  export const FilterButtonBorderAlt: FilterButtonBorderAlt;
26659
26704
  /**
26660
- * The color of a tab on the ribbon menu (e.g. Home, Model, Test).
26705
+ * The color of a tab on the toolbar menu.
26661
26706
  *
26662
26707
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#RibbonTab)
26663
26708
  */
@@ -26668,7 +26713,7 @@ declare namespace Enum {
26668
26713
  }
26669
26714
  export const RibbonTab: RibbonTab;
26670
26715
  /**
26671
- * The background color of the ribbon menu.
26716
+ * The background color of the toolbar.
26672
26717
  *
26673
26718
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#RibbonTabTopBar)
26674
26719
  */
@@ -26701,7 +26746,7 @@ declare namespace Enum {
26701
26746
  }
26702
26747
  export const MainButton: MainButton;
26703
26748
  /**
26704
- * The background color of buttons on the ribbon menu.
26749
+ * The background color of buttons on the toolbar.
26705
26750
  *
26706
26751
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#RibbonButton)
26707
26752
  */
@@ -28315,6 +28360,60 @@ declare namespace Enum {
28315
28360
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.SwipeDirection | undefined;
28316
28361
  }
28317
28362
  export type SwipeDirection = SwipeDirection.Right | SwipeDirection.Left | SwipeDirection.Up | SwipeDirection.Down | SwipeDirection.None;
28363
+ /**
28364
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SystemThemeValue)
28365
+ */
28366
+ export namespace SystemThemeValue {
28367
+ /**
28368
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SystemThemeValue#error)
28369
+ */
28370
+ export interface error extends globalThis.EnumItem {
28371
+ Name: "error";
28372
+ Value: 0;
28373
+ EnumType: typeof globalThis.Enum.SystemThemeValue;
28374
+ }
28375
+ export const error: error;
28376
+ /**
28377
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SystemThemeValue#light)
28378
+ */
28379
+ export interface light extends globalThis.EnumItem {
28380
+ Name: "light";
28381
+ Value: 1;
28382
+ EnumType: typeof globalThis.Enum.SystemThemeValue;
28383
+ }
28384
+ export const light: light;
28385
+ /**
28386
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SystemThemeValue#dark)
28387
+ */
28388
+ export interface dark extends globalThis.EnumItem {
28389
+ Name: "dark";
28390
+ Value: 2;
28391
+ EnumType: typeof globalThis.Enum.SystemThemeValue;
28392
+ }
28393
+ export const dark: dark;
28394
+ /**
28395
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SystemThemeValue#systemLight)
28396
+ */
28397
+ export interface systemLight extends globalThis.EnumItem {
28398
+ Name: "systemLight";
28399
+ Value: 3;
28400
+ EnumType: typeof globalThis.Enum.SystemThemeValue;
28401
+ }
28402
+ export const systemLight: systemLight;
28403
+ /**
28404
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SystemThemeValue#systemDark)
28405
+ */
28406
+ export interface systemDark extends globalThis.EnumItem {
28407
+ Name: "systemDark";
28408
+ Value: 4;
28409
+ EnumType: typeof globalThis.Enum.SystemThemeValue;
28410
+ }
28411
+ export const systemDark: systemDark;
28412
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.SystemThemeValue>;
28413
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.SystemThemeValue | undefined;
28414
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.SystemThemeValue | undefined;
28415
+ }
28416
+ export type SystemThemeValue = SystemThemeValue.error | SystemThemeValue.light | SystemThemeValue.dark | SystemThemeValue.systemLight | SystemThemeValue.systemDark;
28318
28417
  /**
28319
28418
  * Used by `UITableLayout.MajorAxis` to decide whether direct siblings are rows or columns.
28320
28419
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rbxts/types",
3
- "version": "1.0.846",
3
+ "version": "1.0.847",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },