@rbxts/types 1.0.941 → 1.0.943
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.
- package/include/generated/None.d.ts +439 -101
- package/include/generated/PluginSecurity.d.ts +228 -14
- package/include/generated/enums.d.ts +372 -2
- package/package.json +1 -1
|
@@ -338,6 +338,7 @@ interface CreatableInstances {
|
|
|
338
338
|
AudioSpeechToText: AudioSpeechToText;
|
|
339
339
|
AudioTextToSpeech: AudioTextToSpeech;
|
|
340
340
|
AudioTremolo: AudioTremolo;
|
|
341
|
+
AudioWindSynthesizer: AudioWindSynthesizer;
|
|
341
342
|
AuroraScript: AuroraScript;
|
|
342
343
|
AvatarAbilityRules: AvatarAbilityRules;
|
|
343
344
|
AvatarAccessoryRules: AvatarAccessoryRules;
|
|
@@ -597,6 +598,7 @@ interface CreatableInstances {
|
|
|
597
598
|
VideoDisplay: VideoDisplay;
|
|
598
599
|
VideoFrame: VideoFrame;
|
|
599
600
|
VideoPlayer: VideoPlayer;
|
|
601
|
+
ViewportCamera: ViewportCamera;
|
|
600
602
|
ViewportFrame: ViewportFrame;
|
|
601
603
|
VisualizationMode: VisualizationMode;
|
|
602
604
|
VisualizationModeCategory: VisualizationModeCategory;
|
|
@@ -707,6 +709,7 @@ interface Instances extends Services, CreatableInstances {
|
|
|
707
709
|
LuaSourceContainer: LuaSourceContainer;
|
|
708
710
|
ManualSurfaceJointInstance: ManualSurfaceJointInstance;
|
|
709
711
|
MaterialImportData: MaterialImportData;
|
|
712
|
+
MemoryStoreDistributedCounter: MemoryStoreDistributedCounter;
|
|
710
713
|
MemoryStoreHashMap: MemoryStoreHashMap;
|
|
711
714
|
MemoryStoreHashMapPages: MemoryStoreHashMapPages;
|
|
712
715
|
MemoryStoreQueue: MemoryStoreQueue;
|
|
@@ -819,9 +822,11 @@ interface Objects extends Instances {
|
|
|
819
822
|
AnimationNode: AnimationNode;
|
|
820
823
|
Capture: Capture;
|
|
821
824
|
ConfigSnapshot: ConfigSnapshot;
|
|
825
|
+
DataModelDiff: DataModelDiff;
|
|
822
826
|
EditableImage: EditableImage;
|
|
823
827
|
EditableMesh: EditableMesh;
|
|
824
828
|
ExecutedRemoteCommand: ExecutedRemoteCommand;
|
|
829
|
+
Logger: Logger;
|
|
825
830
|
LuauExpression: LuauExpression;
|
|
826
831
|
MLSession: MLSession;
|
|
827
832
|
Object: RBXObject;
|
|
@@ -940,6 +945,21 @@ interface ConfigSnapshot extends RBXObject {
|
|
|
940
945
|
*/
|
|
941
946
|
readonly _nominal_ConfigSnapshot: unique symbol;
|
|
942
947
|
}
|
|
948
|
+
/**
|
|
949
|
+
* - **Tags**: NotCreatable
|
|
950
|
+
*
|
|
951
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DataModelDiff)
|
|
952
|
+
*/
|
|
953
|
+
interface DataModelDiff extends RBXObject {
|
|
954
|
+
/**
|
|
955
|
+
* **DO NOT USE!**
|
|
956
|
+
*
|
|
957
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
958
|
+
* @hidden
|
|
959
|
+
* @deprecated
|
|
960
|
+
*/
|
|
961
|
+
readonly _nominal_DataModelDiff: unique symbol;
|
|
962
|
+
}
|
|
943
963
|
/**
|
|
944
964
|
* Object which allows for the runtime creation and manipulation of images.
|
|
945
965
|
*
|
|
@@ -2094,6 +2114,21 @@ interface AudioTremolo extends Instance {
|
|
|
2094
2114
|
*/
|
|
2095
2115
|
readonly _nominal_AudioTremolo: unique symbol;
|
|
2096
2116
|
}
|
|
2117
|
+
/**
|
|
2118
|
+
* - **Tags**: NotBrowsable
|
|
2119
|
+
*
|
|
2120
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioWindSynthesizer)
|
|
2121
|
+
*/
|
|
2122
|
+
interface AudioWindSynthesizer extends Instance {
|
|
2123
|
+
/**
|
|
2124
|
+
* **DO NOT USE!**
|
|
2125
|
+
*
|
|
2126
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
2127
|
+
* @hidden
|
|
2128
|
+
* @deprecated
|
|
2129
|
+
*/
|
|
2130
|
+
readonly _nominal_AudioWindSynthesizer: unique symbol;
|
|
2131
|
+
}
|
|
2097
2132
|
/**
|
|
2098
2133
|
* - **Tags**: NotCreatable
|
|
2099
2134
|
*
|
|
@@ -6473,6 +6508,8 @@ interface TextLabel extends GuiLabel {
|
|
|
6473
6508
|
readonly _nominal_TextLabel: unique symbol;
|
|
6474
6509
|
}
|
|
6475
6510
|
/**
|
|
6511
|
+
* A `GuiObject` that automatically displays the keybinding for an action as text or an image.
|
|
6512
|
+
*
|
|
6476
6513
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputActionLabel)
|
|
6477
6514
|
*/
|
|
6478
6515
|
interface InputActionLabel extends GuiObject {
|
|
@@ -7247,6 +7284,8 @@ interface HarmonyService extends Instance {
|
|
|
7247
7284
|
readonly _nominal_HarmonyService: unique symbol;
|
|
7248
7285
|
}
|
|
7249
7286
|
/**
|
|
7287
|
+
* Provides methods which return Luau heap memory usage summaries on client and server.
|
|
7288
|
+
*
|
|
7250
7289
|
* - **Tags**: NotCreatable, Service
|
|
7251
7290
|
*
|
|
7252
7291
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HeapProfilerService)
|
|
@@ -7261,20 +7300,24 @@ interface HeapProfilerService extends Instance {
|
|
|
7261
7300
|
*/
|
|
7262
7301
|
readonly _nominal_HeapProfilerService: unique symbol;
|
|
7263
7302
|
/**
|
|
7303
|
+
* Returns a summary of Luau heap memory usage for the requested player's client.
|
|
7304
|
+
*
|
|
7264
7305
|
* - **ThreadSafety**: Unsafe
|
|
7265
7306
|
* - **Tags**: Yields
|
|
7266
7307
|
*
|
|
7267
7308
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HeapProfilerService#ClientRequestDataAsync)
|
|
7268
|
-
* @param this
|
|
7309
|
+
* @param this Provides methods which return Luau heap memory usage summaries on client and server.
|
|
7269
7310
|
* @param player
|
|
7270
7311
|
*/
|
|
7271
7312
|
ClientRequestDataAsync(this: HeapProfilerService, player: Player): string;
|
|
7272
7313
|
/**
|
|
7314
|
+
* Returns a summary of Luau heap memory usage on the client.
|
|
7315
|
+
*
|
|
7273
7316
|
* - **ThreadSafety**: Unsafe
|
|
7274
7317
|
* - **Tags**: Yields
|
|
7275
7318
|
*
|
|
7276
7319
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HeapProfilerService#ServerRequestDataAsync)
|
|
7277
|
-
* @param this
|
|
7320
|
+
* @param this Provides methods which return Luau heap memory usage summaries on client and server.
|
|
7278
7321
|
*/
|
|
7279
7322
|
ServerRequestDataAsync(this: HeapProfilerService): string;
|
|
7280
7323
|
/**
|
|
@@ -8430,7 +8473,7 @@ interface BaseScript extends LuaSourceContainer {
|
|
|
8430
8473
|
*/
|
|
8431
8474
|
readonly _nominal_BaseScript: unique symbol;
|
|
8432
8475
|
/**
|
|
8433
|
-
* Determines the context under which the script
|
|
8476
|
+
* Determines the context under which the script runs.
|
|
8434
8477
|
*
|
|
8435
8478
|
* - **ThreadSafety**: ReadSafe
|
|
8436
8479
|
*
|
|
@@ -8756,6 +8799,21 @@ interface MemStorageConnection extends Instance {
|
|
|
8756
8799
|
*/
|
|
8757
8800
|
Disconnect(this: MemStorageConnection): void;
|
|
8758
8801
|
}
|
|
8802
|
+
/**
|
|
8803
|
+
* - **Tags**: NotCreatable, NotReplicated
|
|
8804
|
+
*
|
|
8805
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MemoryStoreDistributedCounter)
|
|
8806
|
+
*/
|
|
8807
|
+
interface MemoryStoreDistributedCounter extends Instance {
|
|
8808
|
+
/**
|
|
8809
|
+
* **DO NOT USE!**
|
|
8810
|
+
*
|
|
8811
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
8812
|
+
* @hidden
|
|
8813
|
+
* @deprecated
|
|
8814
|
+
*/
|
|
8815
|
+
readonly _nominal_MemoryStoreDistributedCounter: unique symbol;
|
|
8816
|
+
}
|
|
8759
8817
|
/**
|
|
8760
8818
|
* Provides access to a hash map within `MemoryStoreService`.
|
|
8761
8819
|
*
|
|
@@ -9699,6 +9757,19 @@ interface Camera extends PVInstance {
|
|
|
9699
9757
|
*/
|
|
9700
9758
|
readonly _nominal_Camera: unique symbol;
|
|
9701
9759
|
}
|
|
9760
|
+
/**
|
|
9761
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ViewportCamera)
|
|
9762
|
+
*/
|
|
9763
|
+
interface ViewportCamera extends Camera {
|
|
9764
|
+
/**
|
|
9765
|
+
* **DO NOT USE!**
|
|
9766
|
+
*
|
|
9767
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
9768
|
+
* @hidden
|
|
9769
|
+
* @deprecated
|
|
9770
|
+
*/
|
|
9771
|
+
readonly _nominal_ViewportCamera: unique symbol;
|
|
9772
|
+
}
|
|
9702
9773
|
/**
|
|
9703
9774
|
* Models are container objects, meaning they group objects together. They are best used to hold collections of `BaseParts` and have a number of functions that extend their functionality.
|
|
9704
9775
|
*
|
|
@@ -9886,9 +9957,13 @@ interface Workspace extends WorldRoot {
|
|
|
9886
9957
|
*/
|
|
9887
9958
|
set StreamingEnabled(value: boolean);
|
|
9888
9959
|
/**
|
|
9960
|
+
* Applies Roblox's recommended instance streaming settings to the `Workspace`.
|
|
9961
|
+
*
|
|
9889
9962
|
* - **ThreadSafety**: Unsafe
|
|
9890
9963
|
*
|
|
9891
9964
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Workspace#ApplyRecommendedStreamingSettings)
|
|
9965
|
+
* @param this `Workspace` houses 3D objects which are rendered to the 3D world. Objects not descending from it will not be rendered or physically interact with the world.
|
|
9966
|
+
* @returns `true` if one or more streaming properties were changed; `false` if every value already matched its recommended setting.
|
|
9892
9967
|
*/
|
|
9893
9968
|
ApplyRecommendedStreamingSettings(this: Workspace): boolean;
|
|
9894
9969
|
/**
|
|
@@ -10483,6 +10558,8 @@ interface PhysicsService extends Instance {
|
|
|
10483
10558
|
readonly _nominal_PhysicsService: unique symbol;
|
|
10484
10559
|
}
|
|
10485
10560
|
/**
|
|
10561
|
+
* Lets you view debugging features in Roblox's physics engine, found under the Physics tab in Studio's settings menu.
|
|
10562
|
+
*
|
|
10486
10563
|
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
10487
10564
|
*
|
|
10488
10565
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PhysicsSettings)
|
|
@@ -10577,6 +10654,8 @@ interface PhysicsSettings extends Instance {
|
|
|
10577
10654
|
*/
|
|
10578
10655
|
AreModelCoordsShown: boolean;
|
|
10579
10656
|
/**
|
|
10657
|
+
* When set to true, parts that are not `BasePart.Anchored` will be highlighted.
|
|
10658
|
+
*
|
|
10580
10659
|
* - **ThreadSafety**: ReadSafe
|
|
10581
10660
|
*
|
|
10582
10661
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PhysicsSettings#AreNonAnchorsShown)
|
|
@@ -10607,6 +10686,8 @@ interface PhysicsSettings extends Instance {
|
|
|
10607
10686
|
*/
|
|
10608
10687
|
AreRegionsShown: boolean;
|
|
10609
10688
|
/**
|
|
10689
|
+
* When set to true, shows terrain replication streaming regions.
|
|
10690
|
+
*
|
|
10610
10691
|
* - **ThreadSafety**: ReadSafe
|
|
10611
10692
|
*
|
|
10612
10693
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PhysicsSettings#AreTerrainReplicationRegionsShown)
|
|
@@ -10637,12 +10718,16 @@ interface PhysicsSettings extends Instance {
|
|
|
10637
10718
|
*/
|
|
10638
10719
|
DisableCSGv2: boolean;
|
|
10639
10720
|
/**
|
|
10721
|
+
* When set to true, disables CSGv3 for plugin solid modeling operations.
|
|
10722
|
+
*
|
|
10640
10723
|
* - **ThreadSafety**: ReadSafe
|
|
10641
10724
|
*
|
|
10642
10725
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PhysicsSettings#DisableCSGv3ForPlugins)
|
|
10643
10726
|
*/
|
|
10644
10727
|
DisableCSGv3ForPlugins: boolean;
|
|
10645
10728
|
/**
|
|
10729
|
+
* When set to true, forces the use of CSGv2 for solid modeling operations.
|
|
10730
|
+
*
|
|
10646
10731
|
* - **ThreadSafety**: ReadSafe
|
|
10647
10732
|
* - **Tags**: Hidden, NotReplicated
|
|
10648
10733
|
*
|
|
@@ -10650,6 +10735,8 @@ interface PhysicsSettings extends Instance {
|
|
|
10650
10735
|
*/
|
|
10651
10736
|
ForceCSGv2: boolean;
|
|
10652
10737
|
/**
|
|
10738
|
+
* When set to true, shows physics interpolation throttle information.
|
|
10739
|
+
*
|
|
10653
10740
|
* - **ThreadSafety**: ReadSafe
|
|
10654
10741
|
*
|
|
10655
10742
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PhysicsSettings#IsInterpolationThrottleShown)
|
|
@@ -13630,16 +13717,6 @@ interface DataModel extends ServiceProvider<Services> {
|
|
|
13630
13717
|
* @deprecated
|
|
13631
13718
|
*/
|
|
13632
13719
|
readonly _nominal_DataModel: unique symbol;
|
|
13633
|
-
/**
|
|
13634
|
-
* Returns a table containing basic information about the jobs performed by the task scheduler.
|
|
13635
|
-
*
|
|
13636
|
-
* - **ThreadSafety**: Unsafe
|
|
13637
|
-
*
|
|
13638
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DataModel#GetJobsInfo)
|
|
13639
|
-
* @param this The root of Roblox's parent-child hierarchy. Its direct children are services, such as `Workspace` and `Lighting`, that act as the fundamental components of a Roblox game.
|
|
13640
|
-
* @returns A table containing information about the jobs performed by the task scheduler, see above for the format.
|
|
13641
|
-
*/
|
|
13642
|
-
GetJobsInfo(this: DataModel): Array<unknown>;
|
|
13643
13720
|
/**
|
|
13644
13721
|
* Sets the `DataModel.PlaceId` of the current game instance.
|
|
13645
13722
|
*
|
|
@@ -13660,6 +13737,16 @@ interface DataModel extends ServiceProvider<Services> {
|
|
|
13660
13737
|
* @param universeId The ID to set the `DataModel.GameId` to.
|
|
13661
13738
|
*/
|
|
13662
13739
|
SetUniverseId(this: DataModel, universeId: number): void;
|
|
13740
|
+
/**
|
|
13741
|
+
* Returns a table containing basic information about the jobs performed by the task scheduler.
|
|
13742
|
+
*
|
|
13743
|
+
* - **ThreadSafety**: Unsafe
|
|
13744
|
+
*
|
|
13745
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DataModel#GetJobsInfo)
|
|
13746
|
+
* @param this The root of Roblox's parent-child hierarchy. Its direct children are services, such as `Workspace` and `Lighting`, that act as the fundamental components of a Roblox game.
|
|
13747
|
+
* @returns A table containing information about the jobs performed by the task scheduler, see above for the format.
|
|
13748
|
+
*/
|
|
13749
|
+
GetJobsInfo(this: DataModel): Array<unknown>;
|
|
13663
13750
|
/**
|
|
13664
13751
|
* Returns an array of `Instances` associated with the given content URL.
|
|
13665
13752
|
*
|
|
@@ -14519,18 +14606,24 @@ interface Studio extends Instance {
|
|
|
14519
14606
|
*/
|
|
14520
14607
|
readonly _nominal_Studio: unique symbol;
|
|
14521
14608
|
/**
|
|
14609
|
+
* Sets the action Studio takes when stopping file sync.
|
|
14610
|
+
*
|
|
14522
14611
|
* - **ThreadSafety**: ReadSafe
|
|
14523
14612
|
*
|
|
14524
14613
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#ActionOnStopSync)
|
|
14525
14614
|
*/
|
|
14526
14615
|
ActionOnStopSync: Enum.ActionOnStopSync;
|
|
14527
14616
|
/**
|
|
14617
|
+
* Sets the color of active UI elements in Studio.
|
|
14618
|
+
*
|
|
14528
14619
|
* - **ThreadSafety**: ReadSafe
|
|
14529
14620
|
*
|
|
14530
14621
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Active Color)
|
|
14531
14622
|
*/
|
|
14532
14623
|
"Active Color": Color3;
|
|
14533
14624
|
/**
|
|
14625
|
+
* Sets the color of active UI elements when hovered in Studio.
|
|
14626
|
+
*
|
|
14534
14627
|
* - **ThreadSafety**: ReadSafe
|
|
14535
14628
|
*
|
|
14536
14629
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Active Hover Over Color)
|
|
@@ -14565,36 +14658,48 @@ interface Studio extends Instance {
|
|
|
14565
14658
|
*/
|
|
14566
14659
|
"Animation Skeleton Transparency": number;
|
|
14567
14660
|
/**
|
|
14661
|
+
* Controls whether trailing whitespace is automatically removed from empty lines in the script editor.
|
|
14662
|
+
*
|
|
14568
14663
|
* - **ThreadSafety**: ReadSafe
|
|
14569
14664
|
*
|
|
14570
14665
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Auto Clean Empty Line)
|
|
14571
14666
|
*/
|
|
14572
14667
|
"Auto Clean Empty Line": boolean;
|
|
14573
14668
|
/**
|
|
14669
|
+
* Controls whether the script editor automatically inserts a matching closing bracket.
|
|
14670
|
+
*
|
|
14574
14671
|
* - **ThreadSafety**: ReadSafe
|
|
14575
14672
|
*
|
|
14576
14673
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Auto Closing Brackets)
|
|
14577
14674
|
*/
|
|
14578
14675
|
"Auto Closing Brackets": boolean;
|
|
14579
14676
|
/**
|
|
14677
|
+
* Controls whether the script editor automatically inserts a matching closing quote.
|
|
14678
|
+
*
|
|
14580
14679
|
* - **ThreadSafety**: ReadSafe
|
|
14581
14680
|
*
|
|
14582
14681
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Auto Closing Quotes)
|
|
14583
14682
|
*/
|
|
14584
14683
|
"Auto Closing Quotes": boolean;
|
|
14585
14684
|
/**
|
|
14685
|
+
* Controls whether deleting an opening bracket or quote also removes its closing counterpart.
|
|
14686
|
+
*
|
|
14586
14687
|
* - **ThreadSafety**: ReadSafe
|
|
14587
14688
|
*
|
|
14588
14689
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Auto Delete Closing Brackets and Quotes)
|
|
14589
14690
|
*/
|
|
14590
14691
|
"Auto Delete Closing Brackets and Quotes": boolean;
|
|
14591
14692
|
/**
|
|
14693
|
+
* Sets the rule used to determine automatic indentation in the script editor.
|
|
14694
|
+
*
|
|
14592
14695
|
* - **ThreadSafety**: ReadSafe
|
|
14593
14696
|
*
|
|
14594
14697
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Auto Indent Rule)
|
|
14595
14698
|
*/
|
|
14596
14699
|
"Auto Indent Rule": Enum.AutoIndentRule;
|
|
14597
14700
|
/**
|
|
14701
|
+
* Controls whether Studio automatically saves recovery files at a set interval.
|
|
14702
|
+
*
|
|
14598
14703
|
* - **ThreadSafety**: ReadSafe
|
|
14599
14704
|
*
|
|
14600
14705
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Auto-Recovery Enabled)
|
|
@@ -14624,6 +14729,8 @@ interface Studio extends Instance {
|
|
|
14624
14729
|
*/
|
|
14625
14730
|
"Basic Objects Display Mode": Enum.ListDisplayMode;
|
|
14626
14731
|
/**
|
|
14732
|
+
* Sets the color of boolean literals in the script editor.
|
|
14733
|
+
*
|
|
14627
14734
|
* - **ThreadSafety**: ReadSafe
|
|
14628
14735
|
* - **Tags**: NotReplicated
|
|
14629
14736
|
*
|
|
@@ -14631,6 +14738,8 @@ interface Studio extends Instance {
|
|
|
14631
14738
|
*/
|
|
14632
14739
|
"Bool Color": Color3;
|
|
14633
14740
|
/**
|
|
14741
|
+
* Sets the color of brackets in the script editor.
|
|
14742
|
+
*
|
|
14634
14743
|
* - **ThreadSafety**: ReadSafe
|
|
14635
14744
|
* - **Tags**: NotReplicated
|
|
14636
14745
|
*
|
|
@@ -14671,6 +14780,8 @@ interface Studio extends Instance {
|
|
|
14671
14780
|
*/
|
|
14672
14781
|
"Camera Speed": number;
|
|
14673
14782
|
/**
|
|
14783
|
+
* Controls whether the camera zooms toward the mouse cursor position.
|
|
14784
|
+
*
|
|
14674
14785
|
* - **ThreadSafety**: ReadSafe
|
|
14675
14786
|
*
|
|
14676
14787
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Camera Zoom to Mouse Position)
|
|
@@ -14685,6 +14796,8 @@ interface Studio extends Instance {
|
|
|
14685
14796
|
*/
|
|
14686
14797
|
"Clear Output On Start": boolean;
|
|
14687
14798
|
/**
|
|
14799
|
+
* Controls whether the command bar retains its input state between sessions.
|
|
14800
|
+
*
|
|
14688
14801
|
* - **ThreadSafety**: ReadSafe
|
|
14689
14802
|
*
|
|
14690
14803
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#CommandBarLocalState)
|
|
@@ -14700,6 +14813,8 @@ interface Studio extends Instance {
|
|
|
14700
14813
|
*/
|
|
14701
14814
|
"Comment Color": Color3;
|
|
14702
14815
|
/**
|
|
14816
|
+
* Sets the color of the current line highlight in the script editor.
|
|
14817
|
+
*
|
|
14703
14818
|
* - **ThreadSafety**: ReadSafe
|
|
14704
14819
|
* - **Tags**: NotReplicated
|
|
14705
14820
|
*
|
|
@@ -14707,6 +14822,8 @@ interface Studio extends Instance {
|
|
|
14707
14822
|
*/
|
|
14708
14823
|
"Current Line Highlight Color": Color3;
|
|
14709
14824
|
/**
|
|
14825
|
+
* Sets the color of the current debugger line in the script editor.
|
|
14826
|
+
*
|
|
14710
14827
|
* - **ThreadSafety**: ReadSafe
|
|
14711
14828
|
* - **Tags**: NotReplicated
|
|
14712
14829
|
*
|
|
@@ -14714,6 +14831,8 @@ interface Studio extends Instance {
|
|
|
14714
14831
|
*/
|
|
14715
14832
|
"Debugger Current Line Color": Color3;
|
|
14716
14833
|
/**
|
|
14834
|
+
* Sets the color of debugger error lines in the script editor.
|
|
14835
|
+
*
|
|
14717
14836
|
* - **ThreadSafety**: ReadSafe
|
|
14718
14837
|
* - **Tags**: NotReplicated
|
|
14719
14838
|
*
|
|
@@ -14737,36 +14856,48 @@ interface Studio extends Instance {
|
|
|
14737
14856
|
*/
|
|
14738
14857
|
"Enable Autocomplete": boolean;
|
|
14739
14858
|
/**
|
|
14859
|
+
* Controls whether the CoreScript debugger is available in Studio.
|
|
14860
|
+
*
|
|
14740
14861
|
* - **ThreadSafety**: ReadSafe
|
|
14741
14862
|
*
|
|
14742
14863
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Enable CoreScript Debugger)
|
|
14743
14864
|
*/
|
|
14744
14865
|
"Enable CoreScript Debugger": boolean;
|
|
14745
14866
|
/**
|
|
14867
|
+
* Controls whether HTTP requests from plugins are sandboxed.
|
|
14868
|
+
*
|
|
14746
14869
|
* - **ThreadSafety**: ReadSafe
|
|
14747
14870
|
*
|
|
14748
14871
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Enable Http Sandboxing)
|
|
14749
14872
|
*/
|
|
14750
14873
|
"Enable Http Sandboxing": boolean;
|
|
14751
14874
|
/**
|
|
14875
|
+
* Controls whether internal beta features are accessible in Studio.
|
|
14876
|
+
*
|
|
14752
14877
|
* - **ThreadSafety**: ReadSafe
|
|
14753
14878
|
*
|
|
14754
14879
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Enable Internal Beta Features)
|
|
14755
14880
|
*/
|
|
14756
14881
|
"Enable Internal Beta Features": boolean;
|
|
14757
14882
|
/**
|
|
14883
|
+
* Controls whether internal developer features are accessible in Studio.
|
|
14884
|
+
*
|
|
14758
14885
|
* - **ThreadSafety**: ReadSafe
|
|
14759
14886
|
*
|
|
14760
14887
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Enable Internal Features)
|
|
14761
14888
|
*/
|
|
14762
14889
|
"Enable Internal Features": boolean;
|
|
14763
14890
|
/**
|
|
14891
|
+
* Controls whether opening a script creates a temporary tab that is replaced on the next open.
|
|
14892
|
+
*
|
|
14764
14893
|
* - **ThreadSafety**: ReadSafe
|
|
14765
14894
|
*
|
|
14766
14895
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Enable Temporary Tabs)
|
|
14767
14896
|
*/
|
|
14768
14897
|
"Enable Temporary Tabs": boolean;
|
|
14769
14898
|
/**
|
|
14899
|
+
* Controls whether clicking a script in the Explorer opens it in a temporary tab.
|
|
14900
|
+
*
|
|
14770
14901
|
* - **ThreadSafety**: ReadSafe
|
|
14771
14902
|
*
|
|
14772
14903
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Enable Temporary Tabs In Explorer)
|
|
@@ -14799,18 +14930,24 @@ interface Studio extends Instance {
|
|
|
14799
14930
|
*/
|
|
14800
14931
|
Font: QFont;
|
|
14801
14932
|
/**
|
|
14933
|
+
* Controls whether pasted code is automatically formatted in the script editor.
|
|
14934
|
+
*
|
|
14802
14935
|
* - **ThreadSafety**: ReadSafe
|
|
14803
14936
|
*
|
|
14804
14937
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Format On Paste)
|
|
14805
14938
|
*/
|
|
14806
14939
|
"Format On Paste": boolean;
|
|
14807
14940
|
/**
|
|
14941
|
+
* Controls whether code is automatically formatted as you type in the script editor.
|
|
14942
|
+
*
|
|
14808
14943
|
* - **ThreadSafety**: ReadSafe
|
|
14809
14944
|
*
|
|
14810
14945
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Format On Type)
|
|
14811
14946
|
*/
|
|
14812
14947
|
"Format On Type": boolean;
|
|
14813
14948
|
/**
|
|
14949
|
+
* Sets the color of function names in the script editor.
|
|
14950
|
+
*
|
|
14814
14951
|
* - **ThreadSafety**: ReadSafe
|
|
14815
14952
|
* - **Tags**: NotReplicated
|
|
14816
14953
|
*
|
|
@@ -14818,18 +14955,24 @@ interface Studio extends Instance {
|
|
|
14818
14955
|
*/
|
|
14819
14956
|
"Function Name Color": Color3;
|
|
14820
14957
|
/**
|
|
14958
|
+
* Controls whether the current line is highlighted in the script editor.
|
|
14959
|
+
*
|
|
14821
14960
|
* - **ThreadSafety**: ReadSafe
|
|
14822
14961
|
*
|
|
14823
14962
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Highlight Current Line)
|
|
14824
14963
|
*/
|
|
14825
14964
|
"Highlight Current Line": boolean;
|
|
14826
14965
|
/**
|
|
14966
|
+
* Controls whether other occurrences of the word under the cursor are highlighted.
|
|
14967
|
+
*
|
|
14827
14968
|
* - **ThreadSafety**: ReadSafe
|
|
14828
14969
|
*
|
|
14829
14970
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Highlight Occurances)
|
|
14830
14971
|
*/
|
|
14831
14972
|
"Highlight Occurances": boolean;
|
|
14832
14973
|
/**
|
|
14974
|
+
* Sets the color of hint diagnostics in the script editor.
|
|
14975
|
+
*
|
|
14833
14976
|
* - **ThreadSafety**: ReadSafe
|
|
14834
14977
|
* - **Tags**: NotReplicated
|
|
14835
14978
|
*
|
|
@@ -14853,12 +14996,16 @@ interface Studio extends Instance {
|
|
|
14853
14996
|
*/
|
|
14854
14997
|
"Hover Over Color": Color3;
|
|
14855
14998
|
/**
|
|
14999
|
+
* Controls whether the script editor uses spaces instead of tabs for indentation.
|
|
15000
|
+
*
|
|
14856
15001
|
* - **ThreadSafety**: ReadSafe
|
|
14857
15002
|
*
|
|
14858
15003
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Indent Using Spaces)
|
|
14859
15004
|
*/
|
|
14860
15005
|
"Indent Using Spaces": boolean;
|
|
14861
15006
|
/**
|
|
15007
|
+
* Sets the color of information diagnostics in the script editor.
|
|
15008
|
+
*
|
|
14862
15009
|
* - **ThreadSafety**: ReadSafe
|
|
14863
15010
|
* - **Tags**: NotReplicated
|
|
14864
15011
|
*
|
|
@@ -14891,6 +15038,8 @@ interface Studio extends Instance {
|
|
|
14891
15038
|
*/
|
|
14892
15039
|
LuaDebuggerEnabled: boolean;
|
|
14893
15040
|
/**
|
|
15041
|
+
* Controls whether the Lua debugger is enabled when Studio starts.
|
|
15042
|
+
*
|
|
14894
15043
|
* - **ThreadSafety**: ReadSafe
|
|
14895
15044
|
* - **Tags**: Hidden, NotReplicated
|
|
14896
15045
|
*
|
|
@@ -14898,6 +15047,8 @@ interface Studio extends Instance {
|
|
|
14898
15047
|
*/
|
|
14899
15048
|
readonly LuaDebuggerEnabledAtStartup: boolean;
|
|
14900
15049
|
/**
|
|
15050
|
+
* Sets the color of Luau-specific keywords in the script editor.
|
|
15051
|
+
*
|
|
14901
15052
|
* - **ThreadSafety**: ReadSafe
|
|
14902
15053
|
* - **Tags**: NotReplicated
|
|
14903
15054
|
*
|
|
@@ -14922,6 +15073,8 @@ interface Studio extends Instance {
|
|
|
14922
15073
|
*/
|
|
14923
15074
|
"Maximum Output Lines": number;
|
|
14924
15075
|
/**
|
|
15076
|
+
* Sets the background color of menu items in Studio.
|
|
15077
|
+
*
|
|
14925
15078
|
* - **ThreadSafety**: ReadSafe
|
|
14926
15079
|
* - **Tags**: NotReplicated
|
|
14927
15080
|
*
|
|
@@ -14929,6 +15082,8 @@ interface Studio extends Instance {
|
|
|
14929
15082
|
*/
|
|
14930
15083
|
"Menu Item Background Color": Color3;
|
|
14931
15084
|
/**
|
|
15085
|
+
* Sets the color of method names in the script editor.
|
|
15086
|
+
*
|
|
14932
15087
|
* - **ThreadSafety**: ReadSafe
|
|
14933
15088
|
* - **Tags**: NotReplicated
|
|
14934
15089
|
*
|
|
@@ -14986,6 +15141,8 @@ interface Studio extends Instance {
|
|
|
14986
15141
|
*/
|
|
14987
15142
|
PermissionLevelShown: Enum.PermissionLevelShown;
|
|
14988
15143
|
/**
|
|
15144
|
+
* Controls whether plugin script debugging is enabled in Studio.
|
|
15145
|
+
*
|
|
14989
15146
|
* - **ThreadSafety**: ReadSafe
|
|
14990
15147
|
*
|
|
14991
15148
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#PluginDebuggingEnabled)
|
|
@@ -15000,12 +15157,16 @@ interface Studio extends Instance {
|
|
|
15000
15157
|
*/
|
|
15001
15158
|
PluginsDir: QDir;
|
|
15002
15159
|
/**
|
|
15160
|
+
* Sets the preferred font size in the script editor.
|
|
15161
|
+
*
|
|
15003
15162
|
* - **ThreadSafety**: ReadSafe
|
|
15004
15163
|
*
|
|
15005
15164
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#PreferredTextSize)
|
|
15006
15165
|
*/
|
|
15007
15166
|
PreferredTextSize: Enum.PreferredTextSize;
|
|
15008
15167
|
/**
|
|
15168
|
+
* Sets the primary text color in Studio.
|
|
15169
|
+
*
|
|
15009
15170
|
* - **ThreadSafety**: ReadSafe
|
|
15010
15171
|
* - **Tags**: NotReplicated
|
|
15011
15172
|
*
|
|
@@ -15013,6 +15174,8 @@ interface Studio extends Instance {
|
|
|
15013
15174
|
*/
|
|
15014
15175
|
"Primary Text Color": Color3;
|
|
15015
15176
|
/**
|
|
15177
|
+
* Sets the color of property names in the script editor.
|
|
15178
|
+
*
|
|
15016
15179
|
* - **ThreadSafety**: ReadSafe
|
|
15017
15180
|
* - **Tags**: NotReplicated
|
|
15018
15181
|
*
|
|
@@ -15028,6 +15191,8 @@ interface Studio extends Instance {
|
|
|
15028
15191
|
*/
|
|
15029
15192
|
"Respect Studio shortcuts when game has focus": boolean;
|
|
15030
15193
|
/**
|
|
15194
|
+
* Sets the color of the column ruler in the script editor.
|
|
15195
|
+
*
|
|
15031
15196
|
* - **ThreadSafety**: ReadSafe
|
|
15032
15197
|
* - **Tags**: NotReplicated
|
|
15033
15198
|
*
|
|
@@ -15035,12 +15200,16 @@ interface Studio extends Instance {
|
|
|
15035
15200
|
*/
|
|
15036
15201
|
"Ruler Color": Color3;
|
|
15037
15202
|
/**
|
|
15203
|
+
* Sets the column positions at which vertical ruler lines are drawn in the script editor.
|
|
15204
|
+
*
|
|
15038
15205
|
* - **ThreadSafety**: ReadSafe
|
|
15039
15206
|
*
|
|
15040
15207
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Rulers)
|
|
15041
15208
|
*/
|
|
15042
15209
|
Rulers: string;
|
|
15043
15210
|
/**
|
|
15211
|
+
* Sets how Studio handles undo operations during runtime playback.
|
|
15212
|
+
*
|
|
15044
15213
|
* - **ThreadSafety**: ReadSafe
|
|
15045
15214
|
*
|
|
15046
15215
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#RuntimeUndoBehavior)
|
|
@@ -15055,12 +15224,16 @@ interface Studio extends Instance {
|
|
|
15055
15224
|
*/
|
|
15056
15225
|
ScriptTimeoutLength: number;
|
|
15057
15226
|
/**
|
|
15227
|
+
* Sets the color preset applied to the script editor.
|
|
15228
|
+
*
|
|
15058
15229
|
* - **ThreadSafety**: ReadSafe
|
|
15059
15230
|
*
|
|
15060
15231
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Script Editor Color Preset)
|
|
15061
15232
|
*/
|
|
15062
15233
|
"Script Editor Color Preset": Enum.StudioScriptEditorColorPresets;
|
|
15063
15234
|
/**
|
|
15235
|
+
* Sets the background color of the script editor scrollbar in Studio.
|
|
15236
|
+
*
|
|
15064
15237
|
* - **ThreadSafety**: ReadSafe
|
|
15065
15238
|
* - **Tags**: NotReplicated
|
|
15066
15239
|
*
|
|
@@ -15068,6 +15241,8 @@ interface Studio extends Instance {
|
|
|
15068
15241
|
*/
|
|
15069
15242
|
"Script Editor Scrollbar Background Color": Color3;
|
|
15070
15243
|
/**
|
|
15244
|
+
* Sets the handle color of the script editor scrollbar in Studio.
|
|
15245
|
+
*
|
|
15071
15246
|
* - **ThreadSafety**: ReadSafe
|
|
15072
15247
|
* - **Tags**: NotReplicated
|
|
15073
15248
|
*
|
|
@@ -15075,12 +15250,16 @@ interface Studio extends Instance {
|
|
|
15075
15250
|
*/
|
|
15076
15251
|
"Script Editor Scrollbar Handle Color": Color3;
|
|
15077
15252
|
/**
|
|
15253
|
+
* Controls whether the script editor allows scrolling below the last line.
|
|
15254
|
+
*
|
|
15078
15255
|
* - **ThreadSafety**: ReadSafe
|
|
15079
15256
|
*
|
|
15080
15257
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Scroll Past Last Line)
|
|
15081
15258
|
*/
|
|
15082
15259
|
"Scroll Past Last Line": boolean;
|
|
15083
15260
|
/**
|
|
15261
|
+
* Sets the secondary text color in Studio.
|
|
15262
|
+
*
|
|
15084
15263
|
* - **ThreadSafety**: ReadSafe
|
|
15085
15264
|
* - **Tags**: NotReplicated
|
|
15086
15265
|
*
|
|
@@ -15102,6 +15281,8 @@ interface Studio extends Instance {
|
|
|
15102
15281
|
*/
|
|
15103
15282
|
"Select/Hover Color": Color3;
|
|
15104
15283
|
/**
|
|
15284
|
+
* Sets the background color of selected menu items in Studio.
|
|
15285
|
+
*
|
|
15105
15286
|
* - **ThreadSafety**: ReadSafe
|
|
15106
15287
|
* - **Tags**: NotReplicated
|
|
15107
15288
|
*
|
|
@@ -15109,6 +15290,8 @@ interface Studio extends Instance {
|
|
|
15109
15290
|
*/
|
|
15110
15291
|
"Selected Menu Item Background Color": Color3;
|
|
15111
15292
|
/**
|
|
15293
|
+
* Sets the color of selected text in Studio.
|
|
15294
|
+
*
|
|
15112
15295
|
* - **ThreadSafety**: ReadSafe
|
|
15113
15296
|
* - **Tags**: NotReplicated
|
|
15114
15297
|
*
|
|
@@ -15134,6 +15317,8 @@ interface Studio extends Instance {
|
|
|
15134
15317
|
*/
|
|
15135
15318
|
"Selection Color": Color3;
|
|
15136
15319
|
/**
|
|
15320
|
+
* Sets whether the pivot point is repositioned when parts are imported.
|
|
15321
|
+
*
|
|
15137
15322
|
* - **ThreadSafety**: ReadSafe
|
|
15138
15323
|
*
|
|
15139
15324
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Set Pivot of Imported Parts)
|
|
@@ -15186,12 +15371,16 @@ interface Studio extends Instance {
|
|
|
15186
15371
|
*/
|
|
15187
15372
|
"Show Diagnostics Bar": boolean;
|
|
15188
15373
|
/**
|
|
15374
|
+
* Controls whether FileSyncService is shown in the Explorer panel.
|
|
15375
|
+
*
|
|
15189
15376
|
* - **ThreadSafety**: ReadSafe
|
|
15190
15377
|
*
|
|
15191
15378
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Show FileSyncService)
|
|
15192
15379
|
*/
|
|
15193
15380
|
"Show FileSyncService": boolean;
|
|
15194
15381
|
/**
|
|
15382
|
+
* Controls whether hidden objects are visible in the Explorer panel.
|
|
15383
|
+
*
|
|
15195
15384
|
* - **ThreadSafety**: ReadSafe
|
|
15196
15385
|
*
|
|
15197
15386
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Show Hidden Objects in Explorer)
|
|
@@ -15222,18 +15411,24 @@ interface Studio extends Instance {
|
|
|
15222
15411
|
*/
|
|
15223
15412
|
"Show Plugin GUI Service in Explorer": boolean;
|
|
15224
15413
|
/**
|
|
15414
|
+
* Controls whether whitespace characters are shown as visible glyphs in the script editor.
|
|
15415
|
+
*
|
|
15225
15416
|
* - **ThreadSafety**: ReadSafe
|
|
15226
15417
|
*
|
|
15227
15418
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Show Whitespace)
|
|
15228
15419
|
*/
|
|
15229
15420
|
"Show Whitespace": boolean;
|
|
15230
15421
|
/**
|
|
15422
|
+
* Controls whether a plus button appears when hovering over items in the Explorer.
|
|
15423
|
+
*
|
|
15231
15424
|
* - **ThreadSafety**: ReadSafe
|
|
15232
15425
|
*
|
|
15233
15426
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Show plus button on hover in Explorer)
|
|
15234
15427
|
*/
|
|
15235
15428
|
"Show plus button on hover in Explorer": boolean;
|
|
15236
15429
|
/**
|
|
15430
|
+
* Controls whether the cursor skips over a typed closing bracket or quote if one already exists.
|
|
15431
|
+
*
|
|
15237
15432
|
* - **ThreadSafety**: ReadSafe
|
|
15238
15433
|
*
|
|
15239
15434
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Skip Closing Brackets and Quotes)
|
|
@@ -15282,6 +15477,8 @@ interface Studio extends Instance {
|
|
|
15282
15477
|
*/
|
|
15283
15478
|
Theme: StudioTheme;
|
|
15284
15479
|
/**
|
|
15480
|
+
* Sets the color of type annotations in the script editor.
|
|
15481
|
+
*
|
|
15285
15482
|
* - **ThreadSafety**: ReadSafe
|
|
15286
15483
|
* - **Tags**: NotReplicated
|
|
15287
15484
|
*
|
|
@@ -15311,6 +15508,8 @@ interface Studio extends Instance {
|
|
|
15311
15508
|
*/
|
|
15312
15509
|
"Warning Color": Color3;
|
|
15313
15510
|
/**
|
|
15511
|
+
* Sets the color of visible whitespace characters in the script editor.
|
|
15512
|
+
*
|
|
15314
15513
|
* - **ThreadSafety**: ReadSafe
|
|
15315
15514
|
* - **Tags**: NotReplicated
|
|
15316
15515
|
*
|
|
@@ -17480,7 +17679,7 @@ interface UnvalidatedAssetService extends Instance {
|
|
|
17480
17679
|
readonly _nominal_UnvalidatedAssetService: unique symbol;
|
|
17481
17680
|
}
|
|
17482
17681
|
/**
|
|
17483
|
-
*
|
|
17682
|
+
* `UserGameSettings` is a singleton class found inside of the `UserSettings` singleton. It holds various persistent settings relating to how the user wants to control their camera, and their character.
|
|
17484
17683
|
*
|
|
17485
17684
|
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
17486
17685
|
*
|
|
@@ -18127,6 +18326,21 @@ interface WrapTextureTransfer extends Instance {
|
|
|
18127
18326
|
*/
|
|
18128
18327
|
readonly _nominal_WrapTextureTransfer: unique symbol;
|
|
18129
18328
|
}
|
|
18329
|
+
/**
|
|
18330
|
+
* - **Tags**: NotCreatable, NotReplicated
|
|
18331
|
+
*
|
|
18332
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Logger)
|
|
18333
|
+
*/
|
|
18334
|
+
interface Logger extends RBXObject {
|
|
18335
|
+
/**
|
|
18336
|
+
* **DO NOT USE!**
|
|
18337
|
+
*
|
|
18338
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
18339
|
+
* @hidden
|
|
18340
|
+
* @deprecated
|
|
18341
|
+
*/
|
|
18342
|
+
readonly _nominal_Logger: unique symbol;
|
|
18343
|
+
}
|
|
18130
18344
|
/**
|
|
18131
18345
|
* - **Tags**: NotCreatable
|
|
18132
18346
|
*
|