@rbxts/types 1.0.896 → 1.0.901
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/README.md +2 -0
- package/include/generated/None.d.ts +465 -40
- package/include/generated/PluginSecurity.d.ts +117 -6
- package/include/generated/enums.d.ts +133 -27
- package/package.json +1 -1
|
@@ -98,6 +98,7 @@ interface Services {
|
|
|
98
98
|
IncrementalPatchBuilder: IncrementalPatchBuilder;
|
|
99
99
|
InsertService: InsertService;
|
|
100
100
|
InstanceExtensionsService: InstanceExtensionsService;
|
|
101
|
+
InstanceFileSyncService: InstanceFileSyncService;
|
|
101
102
|
InternalSyncService: InternalSyncService;
|
|
102
103
|
IXPService: IXPService;
|
|
103
104
|
JointsService: JointsService;
|
|
@@ -873,6 +874,8 @@ interface VideoCapture extends Capture {
|
|
|
873
874
|
readonly _nominal_VideoCapture: unique symbol;
|
|
874
875
|
}
|
|
875
876
|
/**
|
|
877
|
+
* A snapshot of configuration values at a given version. Can be player-specific.
|
|
878
|
+
*
|
|
876
879
|
* - **Tags**: NotCreatable, NotReplicated
|
|
877
880
|
*
|
|
878
881
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ConfigSnapshot)
|
|
@@ -3405,6 +3408,8 @@ interface CommerceService extends Instance {
|
|
|
3405
3408
|
readonly _nominal_CommerceService: unique symbol;
|
|
3406
3409
|
}
|
|
3407
3410
|
/**
|
|
3411
|
+
* An animation curve that groups child `FloatCurves` which each animate a different component of a non-unary value.
|
|
3412
|
+
*
|
|
3408
3413
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CompositeValueCurve)
|
|
3409
3414
|
*/
|
|
3410
3415
|
interface CompositeValueCurve extends Instance {
|
|
@@ -3418,6 +3423,8 @@ interface CompositeValueCurve extends Instance {
|
|
|
3418
3423
|
readonly _nominal_CompositeValueCurve: unique symbol;
|
|
3419
3424
|
}
|
|
3420
3425
|
/**
|
|
3426
|
+
* A game service that gives access to in-experience configuration with updates in real time.
|
|
3427
|
+
*
|
|
3421
3428
|
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
3422
3429
|
*
|
|
3423
3430
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ConfigService)
|
|
@@ -3542,6 +3549,8 @@ interface AngularVelocity extends Constraint {
|
|
|
3542
3549
|
/**
|
|
3543
3550
|
* Aligns two `BaseParts` with an animate-able kinematic or force-based joint.
|
|
3544
3551
|
*
|
|
3552
|
+
* - **Tags**: NotBrowsable
|
|
3553
|
+
*
|
|
3545
3554
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnimationConstraint)
|
|
3546
3555
|
*/
|
|
3547
3556
|
interface AnimationConstraint extends Constraint {
|
|
@@ -7199,6 +7208,45 @@ interface InstanceExtensionsService extends Instance {
|
|
|
7199
7208
|
*/
|
|
7200
7209
|
readonly _nominal_InstanceExtensionsService: unique symbol;
|
|
7201
7210
|
}
|
|
7211
|
+
/**
|
|
7212
|
+
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
7213
|
+
*
|
|
7214
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InstanceFileSyncService)
|
|
7215
|
+
*/
|
|
7216
|
+
interface InstanceFileSyncService extends Instance {
|
|
7217
|
+
/**
|
|
7218
|
+
* **DO NOT USE!**
|
|
7219
|
+
*
|
|
7220
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
7221
|
+
* @hidden
|
|
7222
|
+
* @deprecated
|
|
7223
|
+
*/
|
|
7224
|
+
readonly _nominal_InstanceFileSyncService: unique symbol;
|
|
7225
|
+
/**
|
|
7226
|
+
* - **ThreadSafety**: Unsafe
|
|
7227
|
+
*
|
|
7228
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InstanceFileSyncService#GetAllInstances)
|
|
7229
|
+
*/
|
|
7230
|
+
GetAllInstances(this: InstanceFileSyncService): Array<Instance>;
|
|
7231
|
+
/**
|
|
7232
|
+
* - **ThreadSafety**: Unsafe
|
|
7233
|
+
*
|
|
7234
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InstanceFileSyncService#GetStatus)
|
|
7235
|
+
*/
|
|
7236
|
+
GetStatus(this: InstanceFileSyncService, instance: Instance): Enum.InstanceFileSyncStatus;
|
|
7237
|
+
/**
|
|
7238
|
+
* - **ThreadSafety**: Unsafe
|
|
7239
|
+
*
|
|
7240
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InstanceFileSyncService#GetSyncedInstance)
|
|
7241
|
+
*/
|
|
7242
|
+
GetSyncedInstance(this: InstanceFileSyncService, filePath: string): Instance | undefined;
|
|
7243
|
+
/**
|
|
7244
|
+
* - **ThreadSafety**: Unsafe
|
|
7245
|
+
*
|
|
7246
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InstanceFileSyncService#StatusChanged)
|
|
7247
|
+
*/
|
|
7248
|
+
readonly StatusChanged: RBXScriptSignal<(instance: Instance, status: Enum.InstanceFileSyncStatus) => void>;
|
|
7249
|
+
}
|
|
7202
7250
|
/**
|
|
7203
7251
|
* - **Tags**: NotReplicated
|
|
7204
7252
|
*
|
|
@@ -10422,6 +10470,8 @@ interface Plugin extends Instance {
|
|
|
10422
10470
|
*/
|
|
10423
10471
|
Union(this: Plugin, objects: Array<BasePart>): UnionOperation;
|
|
10424
10472
|
/**
|
|
10473
|
+
* **Deprecated:**
|
|
10474
|
+
*
|
|
10425
10475
|
* Creates a `DockWidgetPluginGui` given a `DockWidgetPluginGuiInfo`.
|
|
10426
10476
|
*
|
|
10427
10477
|
* - **ThreadSafety**: Unsafe
|
|
@@ -10436,13 +10486,20 @@ interface Plugin extends Instance {
|
|
|
10436
10486
|
*/
|
|
10437
10487
|
CreateDockWidgetPluginGui(this: Plugin, pluginGuiId: string, dockWidgetPluginGuiInfo: DockWidgetPluginGuiInfo): DockWidgetPluginGui;
|
|
10438
10488
|
/**
|
|
10489
|
+
* Creates a `DockWidgetPluginGui` given a `DockWidgetPluginGuiInfo`.
|
|
10490
|
+
*
|
|
10439
10491
|
* - **ThreadSafety**: Unsafe
|
|
10440
10492
|
* - **Tags**: Yields
|
|
10441
10493
|
*
|
|
10442
10494
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Plugin#CreateDockWidgetPluginGuiAsync)
|
|
10495
|
+
* @param this
|
|
10496
|
+
* @param pluginGuiId A unique and consistent identifier used to storing the widget's dock state and other internal details.
|
|
10497
|
+
* @param dockWidgetPluginGuiInfo Describes the `DockWidgetPluginGui` to create (initial state, size, etc).
|
|
10443
10498
|
*/
|
|
10444
10499
|
CreateDockWidgetPluginGuiAsync(this: Plugin, pluginGuiId: string, dockWidgetPluginGuiInfo: DockWidgetPluginGuiInfo): DockWidgetPluginGui;
|
|
10445
10500
|
/**
|
|
10501
|
+
* **Deprecated:**
|
|
10502
|
+
*
|
|
10446
10503
|
* Prompts the user to open a .fbx animation file that can be loaded onto the `rigModel`, then proceeds to insert the animation as a `KeyframeSequence` in the `Workspace`.
|
|
10447
10504
|
*
|
|
10448
10505
|
* - **ThreadSafety**: Unsafe
|
|
@@ -10457,13 +10514,20 @@ interface Plugin extends Instance {
|
|
|
10457
10514
|
*/
|
|
10458
10515
|
ImportFbxAnimation(this: Plugin, rigModel: Instance, isR15?: boolean): Instance | undefined;
|
|
10459
10516
|
/**
|
|
10517
|
+
* Prompts the user to open a .fbx animation file that can be loaded onto the `rigModel`, then proceeds to insert the animation as a `KeyframeSequence` in the `Workspace`.
|
|
10518
|
+
*
|
|
10460
10519
|
* - **ThreadSafety**: Unsafe
|
|
10461
10520
|
* - **Tags**: Yields
|
|
10462
10521
|
*
|
|
10463
10522
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Plugin#ImportFbxAnimationAsync)
|
|
10523
|
+
* @param this
|
|
10524
|
+
* @param rigModel
|
|
10525
|
+
* @param isR15
|
|
10464
10526
|
*/
|
|
10465
10527
|
ImportFbxAnimationAsync(this: Plugin, rigModel: Instance, isR15?: boolean): Instance | undefined;
|
|
10466
10528
|
/**
|
|
10529
|
+
* **Deprecated:**
|
|
10530
|
+
*
|
|
10467
10531
|
* Prompts the user to open a .fbx file, uploads the individual components of the model as meshes, and generates a character rig for use in animation, which is loaded into the `Workspace`.
|
|
10468
10532
|
*
|
|
10469
10533
|
* - **ThreadSafety**: Unsafe
|
|
@@ -10477,10 +10541,14 @@ interface Plugin extends Instance {
|
|
|
10477
10541
|
*/
|
|
10478
10542
|
ImportFbxRig(this: Plugin, isR15?: boolean): Model;
|
|
10479
10543
|
/**
|
|
10544
|
+
* Prompts the user to open a .fbx file, uploads the individual components of the model as meshes, and generates a character rig for use in animation, which is loaded into the `Workspace`.
|
|
10545
|
+
*
|
|
10480
10546
|
* - **ThreadSafety**: Unsafe
|
|
10481
10547
|
* - **Tags**: Yields
|
|
10482
10548
|
*
|
|
10483
10549
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Plugin#ImportFbxRigAsync)
|
|
10550
|
+
* @param this
|
|
10551
|
+
* @param isR15
|
|
10484
10552
|
*/
|
|
10485
10553
|
ImportFbxRigAsync(this: Plugin, isR15?: boolean): Instance | undefined;
|
|
10486
10554
|
/**
|
|
@@ -10495,13 +10563,19 @@ interface Plugin extends Instance {
|
|
|
10495
10563
|
*/
|
|
10496
10564
|
PromptForExistingAssetId(this: Plugin, assetType: string): number;
|
|
10497
10565
|
/**
|
|
10566
|
+
* Opens a window in Roblox Studio, which prompts the user to select an asset based on the `assetType` specified. Returns what assetId was selected, or -1 if the window was closed.
|
|
10567
|
+
*
|
|
10498
10568
|
* - **ThreadSafety**: Unsafe
|
|
10499
10569
|
* - **Tags**: Yields
|
|
10500
10570
|
*
|
|
10501
10571
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Plugin#PromptForExistingAssetIdAsync)
|
|
10572
|
+
* @param this
|
|
10573
|
+
* @param assetType
|
|
10502
10574
|
*/
|
|
10503
10575
|
PromptForExistingAssetIdAsync(this: Plugin, assetType: string): number;
|
|
10504
10576
|
/**
|
|
10577
|
+
* **Deprecated:**
|
|
10578
|
+
*
|
|
10505
10579
|
* Prompts the user to save their current selection with the specified file name. Returns true if the user did save the file.
|
|
10506
10580
|
*
|
|
10507
10581
|
* - **ThreadSafety**: Unsafe
|
|
@@ -10515,10 +10589,14 @@ interface Plugin extends Instance {
|
|
|
10515
10589
|
*/
|
|
10516
10590
|
PromptSaveSelection(this: Plugin, suggestedFileName?: string): boolean;
|
|
10517
10591
|
/**
|
|
10592
|
+
* Prompts the user to save their current selection with the specified file name. Returns true if the user did save the file.
|
|
10593
|
+
*
|
|
10518
10594
|
* - **ThreadSafety**: Unsafe
|
|
10519
10595
|
* - **Tags**: Yields
|
|
10520
10596
|
*
|
|
10521
10597
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Plugin#PromptSaveSelectionAsync)
|
|
10598
|
+
* @param this
|
|
10599
|
+
* @param suggestedFileName
|
|
10522
10600
|
*/
|
|
10523
10601
|
PromptSaveSelectionAsync(this: Plugin, suggestedFileName?: string): boolean;
|
|
10524
10602
|
/**
|
|
@@ -12818,7 +12896,7 @@ interface SoundGroup extends Instance {
|
|
|
12818
12896
|
readonly _nominal_SoundGroup: unique symbol;
|
|
12819
12897
|
}
|
|
12820
12898
|
/**
|
|
12821
|
-
* A service that determines various aspects of how `Sounds` play in the experience.
|
|
12899
|
+
* A service that determines various aspects of how the audio engine works. Most of its properties affect how `Sounds` play in the experience.
|
|
12822
12900
|
*
|
|
12823
12901
|
* - **Tags**: NotCreatable, Service
|
|
12824
12902
|
*
|
|
@@ -12834,6 +12912,8 @@ interface SoundService extends Instance {
|
|
|
12834
12912
|
*/
|
|
12835
12913
|
readonly _nominal_SoundService: unique symbol;
|
|
12836
12914
|
/**
|
|
12915
|
+
* Determines whether the default character sounds will use instances in the advanced audio system vs. `Sounds`.
|
|
12916
|
+
*
|
|
12837
12917
|
* - **ThreadSafety**: ReadSafe
|
|
12838
12918
|
*
|
|
12839
12919
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SoundService#CharacterSoundsUseNewApi)
|
|
@@ -12848,19 +12928,23 @@ interface SoundService extends Instance {
|
|
|
12848
12928
|
*/
|
|
12849
12929
|
DefaultListenerLocation: Enum.ListenerLocation;
|
|
12850
12930
|
/**
|
|
12931
|
+
* Opens the attenuation curve editor in Studio for the provided `AudioEmitter` or `AudioListener` instances.
|
|
12932
|
+
*
|
|
12851
12933
|
* - **ThreadSafety**: Unsafe
|
|
12852
12934
|
*
|
|
12853
12935
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SoundService#OpenAttenuationCurveEditor)
|
|
12854
|
-
* @param this A service that determines various aspects of how `Sounds` play in the experience.
|
|
12855
|
-
* @param selectedCurveObjects
|
|
12936
|
+
* @param this A service that determines various aspects of how the audio engine works. Most of its properties affect how `Sounds` play in the experience.
|
|
12937
|
+
* @param selectedCurveObjects A list of `AudioEmitters` or `AudioListeners`.
|
|
12856
12938
|
*/
|
|
12857
12939
|
OpenAttenuationCurveEditor(this: SoundService, selectedCurveObjects: Array<Instance>): void;
|
|
12858
12940
|
/**
|
|
12941
|
+
* Opens the directional curve editor in Studio for the provided `AudioEmitter` or `AudioListener` instances.
|
|
12942
|
+
*
|
|
12859
12943
|
* - **ThreadSafety**: Unsafe
|
|
12860
12944
|
*
|
|
12861
12945
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SoundService#OpenDirectionalCurveEditor)
|
|
12862
|
-
* @param this A service that determines various aspects of how `Sounds` play in the experience.
|
|
12863
|
-
* @param selectedCurveObjects
|
|
12946
|
+
* @param this A service that determines various aspects of how the audio engine works. Most of its properties affect how `Sounds` play in the experience.
|
|
12947
|
+
* @param selectedCurveObjects A list of `AudioEmitters` or `AudioListeners`.
|
|
12864
12948
|
*/
|
|
12865
12949
|
OpenDirectionalCurveEditor(this: SoundService, selectedCurveObjects: Array<Instance>): void;
|
|
12866
12950
|
}
|
|
@@ -13408,6 +13492,8 @@ interface StudioService extends Instance {
|
|
|
13408
13492
|
*/
|
|
13409
13493
|
GizmoRaycast(this: StudioService, origin: Vector3, direction: Vector3, raycastParams?: RaycastParams): RaycastResult | undefined;
|
|
13410
13494
|
/**
|
|
13495
|
+
* **Deprecated:**
|
|
13496
|
+
*
|
|
13411
13497
|
* Prompts the current Studio user to select one file to add as a `File`.
|
|
13412
13498
|
*
|
|
13413
13499
|
* - **ThreadSafety**: Unsafe
|
|
@@ -13422,13 +13508,20 @@ interface StudioService extends Instance {
|
|
|
13422
13508
|
*/
|
|
13423
13509
|
PromptImportFile(this: StudioService, fileTypeFilter?: Array<unknown>): Instance | undefined;
|
|
13424
13510
|
/**
|
|
13511
|
+
* Prompts the current Studio user to select one file to add as a `File`.
|
|
13512
|
+
*
|
|
13425
13513
|
* - **ThreadSafety**: Unsafe
|
|
13426
13514
|
* - **Tags**: Yields
|
|
13427
13515
|
*
|
|
13428
13516
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StudioService#PromptImportFileAsync)
|
|
13517
|
+
* @param this Provides access to configuration of Roblox Studio and allows importing files from the user's file system.
|
|
13518
|
+
* @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.
|
|
13519
|
+
* @returns The imported `File`. Returns `nil` if no files were selected, or if the selected file was too large (FileSize greater than 100 megabytes).
|
|
13429
13520
|
*/
|
|
13430
13521
|
PromptImportFileAsync(this: StudioService, fileTypeFilter?: Array<unknown>): Instance | undefined;
|
|
13431
13522
|
/**
|
|
13523
|
+
* **Deprecated:**
|
|
13524
|
+
*
|
|
13432
13525
|
* Prompts the current Studio user to select files to add as `Files`.
|
|
13433
13526
|
*
|
|
13434
13527
|
* - **ThreadSafety**: Unsafe
|
|
@@ -13443,14 +13536,21 @@ interface StudioService extends Instance {
|
|
|
13443
13536
|
*/
|
|
13444
13537
|
PromptImportFiles(this: StudioService, fileTypeFilter?: Array<unknown>): Array<Instance>;
|
|
13445
13538
|
/**
|
|
13539
|
+
* Prompts the current Studio user to select files to add as `Files`.
|
|
13540
|
+
*
|
|
13446
13541
|
* - **ThreadSafety**: Unsafe
|
|
13447
13542
|
* - **Tags**: Yields
|
|
13448
13543
|
*
|
|
13449
13544
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StudioService#PromptImportFilesAsync)
|
|
13545
|
+
* @param this Provides access to configuration of Roblox Studio and allows importing files from the user's file system.
|
|
13546
|
+
* @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.
|
|
13547
|
+
* @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).
|
|
13450
13548
|
*/
|
|
13451
13549
|
PromptImportFilesAsync(this: StudioService, fileTypeFilter?: Array<unknown>): Array<Instance>;
|
|
13452
13550
|
}
|
|
13453
13551
|
/**
|
|
13552
|
+
* Service allowing plugins to automate and customize Test and Run mode testing.
|
|
13553
|
+
*
|
|
13454
13554
|
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
13455
13555
|
*
|
|
13456
13556
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StudioTestService)
|
|
@@ -13469,6 +13569,9 @@ interface StudioTestService extends Instance {
|
|
|
13469
13569
|
* - **Tags**: Yields
|
|
13470
13570
|
*
|
|
13471
13571
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StudioTestService#ExecutePlayModeAsync)
|
|
13572
|
+
* @param this Service allowing plugins to automate and customize Test and Run mode testing.
|
|
13573
|
+
* @param args Argument passed to the test session, or `nil`.
|
|
13574
|
+
* @returns Value passed from `StudioTestService:EndTest()`, or `nil`.
|
|
13472
13575
|
*/
|
|
13473
13576
|
ExecutePlayModeAsync(this: StudioTestService, args: unknown): unknown;
|
|
13474
13577
|
/**
|
|
@@ -13476,6 +13579,9 @@ interface StudioTestService extends Instance {
|
|
|
13476
13579
|
* - **Tags**: Yields
|
|
13477
13580
|
*
|
|
13478
13581
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StudioTestService#ExecuteRunModeAsync)
|
|
13582
|
+
* @param this Service allowing plugins to automate and customize Test and Run mode testing.
|
|
13583
|
+
* @param args Argument passed to the test session, or `nil`.
|
|
13584
|
+
* @returns Value passed from `StudioTestService:EndTest()`, or `nil`.
|
|
13479
13585
|
*/
|
|
13480
13586
|
ExecuteRunModeAsync(this: StudioTestService, args: unknown): unknown;
|
|
13481
13587
|
}
|
|
@@ -14060,6 +14166,8 @@ interface TestService extends Instance {
|
|
|
14060
14166
|
*/
|
|
14061
14167
|
readonly _nominal_TestService: unique symbol;
|
|
14062
14168
|
/**
|
|
14169
|
+
* **Deprecated:**
|
|
14170
|
+
*
|
|
14063
14171
|
* Runs scripts which are parented to TestService.
|
|
14064
14172
|
*
|
|
14065
14173
|
* - **ThreadSafety**: Unsafe
|
|
@@ -14072,10 +14180,13 @@ interface TestService extends Instance {
|
|
|
14072
14180
|
*/
|
|
14073
14181
|
Run(this: TestService): void;
|
|
14074
14182
|
/**
|
|
14183
|
+
* Runs scripts which are parented to TestService.
|
|
14184
|
+
*
|
|
14075
14185
|
* - **ThreadSafety**: Unsafe
|
|
14076
14186
|
* - **Tags**: Yields
|
|
14077
14187
|
*
|
|
14078
14188
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TestService#RunAsync)
|
|
14189
|
+
* @param this A service used by Roblox to run controlled tests of the engine. It is available for developers to use, to a limited degree.
|
|
14079
14190
|
*/
|
|
14080
14191
|
RunAsync(this: TestService): void;
|
|
14081
14192
|
}
|
|
@@ -14210,7 +14321,7 @@ interface ChatWindowConfiguration extends TextChatConfigurations {
|
|
|
14210
14321
|
readonly _nominal_ChatWindowConfiguration: unique symbol;
|
|
14211
14322
|
}
|
|
14212
14323
|
/**
|
|
14213
|
-
*
|
|
14324
|
+
* A data object representing a text chat message.
|
|
14214
14325
|
*
|
|
14215
14326
|
* - **Tags**: NotCreatable
|
|
14216
14327
|
*
|
|
@@ -3791,10 +3791,14 @@ declare namespace Enum {
|
|
|
3791
3791
|
}
|
|
3792
3792
|
export type AudioWindowSize = AudioWindowSize.Small | AudioWindowSize.Medium | AudioWindowSize.Large;
|
|
3793
3793
|
/**
|
|
3794
|
+
* Enum used with `Workspace.AuthorityMode`.
|
|
3795
|
+
*
|
|
3794
3796
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AuthorityMode)
|
|
3795
3797
|
*/
|
|
3796
3798
|
export namespace AuthorityMode {
|
|
3797
3799
|
/**
|
|
3800
|
+
* Server authority with client side prediction and rollback enabled.
|
|
3801
|
+
*
|
|
3798
3802
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AuthorityMode#Server)
|
|
3799
3803
|
*/
|
|
3800
3804
|
export interface Server extends globalThis.EnumItem {
|
|
@@ -3804,6 +3808,8 @@ declare namespace Enum {
|
|
|
3804
3808
|
}
|
|
3805
3809
|
export const Server: Server;
|
|
3806
3810
|
/**
|
|
3811
|
+
* Traditional distributed authority model where, for each instance, the engine decides whether the server or a client should be the authority; `BasePart:SetNetworkOwner()` can be used to influence the decision.
|
|
3812
|
+
*
|
|
3807
3813
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AuthorityMode#Automatic)
|
|
3808
3814
|
*/
|
|
3809
3815
|
export interface Automatic extends globalThis.EnumItem {
|
|
@@ -6508,33 +6514,6 @@ declare namespace Enum {
|
|
|
6508
6514
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.CatalogSortType | undefined;
|
|
6509
6515
|
}
|
|
6510
6516
|
export type CatalogSortType = CatalogSortType.Relevance | CatalogSortType.PriceHighToLow | CatalogSortType.PriceLowToHigh | CatalogSortType.MostFavorited | CatalogSortType.RecentlyCreated | CatalogSortType.Bestselling;
|
|
6511
|
-
/**
|
|
6512
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CatalogTimedOptionFilter)
|
|
6513
|
-
*/
|
|
6514
|
-
export namespace CatalogTimedOptionFilter {
|
|
6515
|
-
/**
|
|
6516
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CatalogTimedOptionFilter#All)
|
|
6517
|
-
*/
|
|
6518
|
-
export interface All extends globalThis.EnumItem {
|
|
6519
|
-
Name: "All";
|
|
6520
|
-
Value: 1;
|
|
6521
|
-
EnumType: typeof globalThis.Enum.CatalogTimedOptionFilter;
|
|
6522
|
-
}
|
|
6523
|
-
export const All: All;
|
|
6524
|
-
/**
|
|
6525
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CatalogTimedOptionFilter#TimedOptionOnly)
|
|
6526
|
-
*/
|
|
6527
|
-
export interface TimedOptionOnly extends globalThis.EnumItem {
|
|
6528
|
-
Name: "TimedOptionOnly";
|
|
6529
|
-
Value: 2;
|
|
6530
|
-
EnumType: typeof globalThis.Enum.CatalogTimedOptionFilter;
|
|
6531
|
-
}
|
|
6532
|
-
export const TimedOptionOnly: TimedOptionOnly;
|
|
6533
|
-
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.CatalogTimedOptionFilter>;
|
|
6534
|
-
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.CatalogTimedOptionFilter | undefined;
|
|
6535
|
-
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.CatalogTimedOptionFilter | undefined;
|
|
6536
|
-
}
|
|
6537
|
-
export type CatalogTimedOptionFilter = CatalogTimedOptionFilter.All | CatalogTimedOptionFilter.TimedOptionOnly;
|
|
6538
6517
|
/**
|
|
6539
6518
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CellBlock)
|
|
6540
6519
|
*/
|
|
@@ -8494,6 +8473,10 @@ declare namespace Enum {
|
|
|
8494
8473
|
EnumType: typeof globalThis.Enum.ConnectionError;
|
|
8495
8474
|
}
|
|
8496
8475
|
export const DisconnectRaknetErrors: DisconnectRaknetErrors;
|
|
8476
|
+
/**
|
|
8477
|
+
* @deprecated renamed to DisconnectRaknetErrors
|
|
8478
|
+
*/
|
|
8479
|
+
export const DisconnectNoResponse: DisconnectRaknetErrors;
|
|
8497
8480
|
/**
|
|
8498
8481
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ConnectionError#DisconnectWrongVersion)
|
|
8499
8482
|
*/
|
|
@@ -9617,6 +9600,12 @@ declare namespace Enum {
|
|
|
9617
9600
|
}
|
|
9618
9601
|
export const RemoveVersionAsync: RemoveVersionAsync;
|
|
9619
9602
|
/**
|
|
9603
|
+
* This request type is not yet active, `GetRequestBudgetForRequestType()` with this enum will return `0`.
|
|
9604
|
+
*
|
|
9605
|
+
*
|
|
9606
|
+
*
|
|
9607
|
+
* Refers to `GetAsync()`, `GetVersionAsync()`, `GetVersionAtTimeAsync()`, and the read of `UpdateAsync()` for `DataStore`.
|
|
9608
|
+
*
|
|
9620
9609
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DataStoreRequestType#StandardRead)
|
|
9621
9610
|
*/
|
|
9622
9611
|
export interface StandardRead extends globalThis.EnumItem {
|
|
@@ -9626,6 +9615,12 @@ declare namespace Enum {
|
|
|
9626
9615
|
}
|
|
9627
9616
|
export const StandardRead: StandardRead;
|
|
9628
9617
|
/**
|
|
9618
|
+
* This request type is not yet active, `GetRequestBudgetForRequestType()` with this enum will return `0`.
|
|
9619
|
+
*
|
|
9620
|
+
*
|
|
9621
|
+
*
|
|
9622
|
+
* Refers to `SetAsync()`, `IncrementAsync()`, and the write of `UpdateAsync()` for `DataStore`.
|
|
9623
|
+
*
|
|
9629
9624
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DataStoreRequestType#StandardWrite)
|
|
9630
9625
|
*/
|
|
9631
9626
|
export interface StandardWrite extends globalThis.EnumItem {
|
|
@@ -9635,6 +9630,12 @@ declare namespace Enum {
|
|
|
9635
9630
|
}
|
|
9636
9631
|
export const StandardWrite: StandardWrite;
|
|
9637
9632
|
/**
|
|
9633
|
+
* This request type is not yet active, `GetRequestBudgetForRequestType()` with this enum will return `0`.
|
|
9634
|
+
*
|
|
9635
|
+
*
|
|
9636
|
+
*
|
|
9637
|
+
* Refers to `ListDataStoresAsync()`, and `ListKeysAsync()` and `ListVersionsAsync()` for `DataStore`.
|
|
9638
|
+
*
|
|
9638
9639
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DataStoreRequestType#StandardList)
|
|
9639
9640
|
*/
|
|
9640
9641
|
export interface StandardList extends globalThis.EnumItem {
|
|
@@ -9644,6 +9645,12 @@ declare namespace Enum {
|
|
|
9644
9645
|
}
|
|
9645
9646
|
export const StandardList: StandardList;
|
|
9646
9647
|
/**
|
|
9648
|
+
* This request type is not yet active, `GetRequestBudgetForRequestType()` with this enum will return `0`.
|
|
9649
|
+
*
|
|
9650
|
+
*
|
|
9651
|
+
*
|
|
9652
|
+
* Refers to `RemoveAsync()` for `DataStore`.
|
|
9653
|
+
*
|
|
9647
9654
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DataStoreRequestType#StandardRemove)
|
|
9648
9655
|
*/
|
|
9649
9656
|
export interface StandardRemove extends globalThis.EnumItem {
|
|
@@ -9653,6 +9660,12 @@ declare namespace Enum {
|
|
|
9653
9660
|
}
|
|
9654
9661
|
export const StandardRemove: StandardRemove;
|
|
9655
9662
|
/**
|
|
9663
|
+
* This request type is not yet active, `GetRequestBudgetForRequestType()` with this enum will return `0`.
|
|
9664
|
+
*
|
|
9665
|
+
*
|
|
9666
|
+
*
|
|
9667
|
+
* Refers to `GetAsync()` and the read of `UpdateAsync()` for `OrderedDataStore`.
|
|
9668
|
+
*
|
|
9656
9669
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DataStoreRequestType#OrderedRead)
|
|
9657
9670
|
*/
|
|
9658
9671
|
export interface OrderedRead extends globalThis.EnumItem {
|
|
@@ -9662,6 +9675,12 @@ declare namespace Enum {
|
|
|
9662
9675
|
}
|
|
9663
9676
|
export const OrderedRead: OrderedRead;
|
|
9664
9677
|
/**
|
|
9678
|
+
* This request type is not yet active, `GetRequestBudgetForRequestType()` with this enum will return `0`.
|
|
9679
|
+
*
|
|
9680
|
+
*
|
|
9681
|
+
*
|
|
9682
|
+
* Refers to `SetAsync()`, `IncrementAsync()`, and the write of `UpdateAsync()` for `OrderedDataStore`.
|
|
9683
|
+
*
|
|
9665
9684
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DataStoreRequestType#OrderedWrite)
|
|
9666
9685
|
*/
|
|
9667
9686
|
export interface OrderedWrite extends globalThis.EnumItem {
|
|
@@ -9671,6 +9690,12 @@ declare namespace Enum {
|
|
|
9671
9690
|
}
|
|
9672
9691
|
export const OrderedWrite: OrderedWrite;
|
|
9673
9692
|
/**
|
|
9693
|
+
* This request type is not yet active, `GetRequestBudgetForRequestType()` with this enum will return `0`.
|
|
9694
|
+
*
|
|
9695
|
+
*
|
|
9696
|
+
*
|
|
9697
|
+
* Refers to `GetSortedAsync()` for `OrderedDataStore`. GetRequestBudgetForRequestType()`with this enum will return`0`.
|
|
9698
|
+
*
|
|
9674
9699
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DataStoreRequestType#OrderedList)
|
|
9675
9700
|
*/
|
|
9676
9701
|
export interface OrderedList extends globalThis.EnumItem {
|
|
@@ -9680,6 +9705,12 @@ declare namespace Enum {
|
|
|
9680
9705
|
}
|
|
9681
9706
|
export const OrderedList: OrderedList;
|
|
9682
9707
|
/**
|
|
9708
|
+
* This request type is not yet active, `GetRequestBudgetForRequestType()` with this enum will return `0`.
|
|
9709
|
+
*
|
|
9710
|
+
*
|
|
9711
|
+
*
|
|
9712
|
+
* Refers to `RemoveAsync()` for `OrderedDataStore`.
|
|
9713
|
+
*
|
|
9683
9714
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DataStoreRequestType#OrderedRemove)
|
|
9684
9715
|
*/
|
|
9685
9716
|
export interface OrderedRemove extends globalThis.EnumItem {
|
|
@@ -16675,6 +16706,51 @@ declare namespace Enum {
|
|
|
16675
16706
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.InputType | undefined;
|
|
16676
16707
|
}
|
|
16677
16708
|
export type InputType = InputType.NoInput | InputType.Constant | InputType.Sin;
|
|
16709
|
+
/**
|
|
16710
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/InstanceFileSyncStatus)
|
|
16711
|
+
*/
|
|
16712
|
+
export namespace InstanceFileSyncStatus {
|
|
16713
|
+
/**
|
|
16714
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/InstanceFileSyncStatus#NotSynced)
|
|
16715
|
+
*/
|
|
16716
|
+
export interface NotSynced extends globalThis.EnumItem {
|
|
16717
|
+
Name: "NotSynced";
|
|
16718
|
+
Value: 0;
|
|
16719
|
+
EnumType: typeof globalThis.Enum.InstanceFileSyncStatus;
|
|
16720
|
+
}
|
|
16721
|
+
export const NotSynced: NotSynced;
|
|
16722
|
+
/**
|
|
16723
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/InstanceFileSyncStatus#Errored)
|
|
16724
|
+
*/
|
|
16725
|
+
export interface Errored extends globalThis.EnumItem {
|
|
16726
|
+
Name: "Errored";
|
|
16727
|
+
Value: 1;
|
|
16728
|
+
EnumType: typeof globalThis.Enum.InstanceFileSyncStatus;
|
|
16729
|
+
}
|
|
16730
|
+
export const Errored: Errored;
|
|
16731
|
+
/**
|
|
16732
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/InstanceFileSyncStatus#SyncedAsRoot)
|
|
16733
|
+
*/
|
|
16734
|
+
export interface SyncedAsRoot extends globalThis.EnumItem {
|
|
16735
|
+
Name: "SyncedAsRoot";
|
|
16736
|
+
Value: 2;
|
|
16737
|
+
EnumType: typeof globalThis.Enum.InstanceFileSyncStatus;
|
|
16738
|
+
}
|
|
16739
|
+
export const SyncedAsRoot: SyncedAsRoot;
|
|
16740
|
+
/**
|
|
16741
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/InstanceFileSyncStatus#SyncedAsDescendant)
|
|
16742
|
+
*/
|
|
16743
|
+
export interface SyncedAsDescendant extends globalThis.EnumItem {
|
|
16744
|
+
Name: "SyncedAsDescendant";
|
|
16745
|
+
Value: 3;
|
|
16746
|
+
EnumType: typeof globalThis.Enum.InstanceFileSyncStatus;
|
|
16747
|
+
}
|
|
16748
|
+
export const SyncedAsDescendant: SyncedAsDescendant;
|
|
16749
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.InstanceFileSyncStatus>;
|
|
16750
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.InstanceFileSyncStatus | undefined;
|
|
16751
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.InstanceFileSyncStatus | undefined;
|
|
16752
|
+
}
|
|
16753
|
+
export type InstanceFileSyncStatus = InstanceFileSyncStatus.NotSynced | InstanceFileSyncStatus.Errored | InstanceFileSyncStatus.SyncedAsRoot | InstanceFileSyncStatus.SyncedAsDescendant;
|
|
16678
16754
|
/**
|
|
16679
16755
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/IntermediateMeshGenerationResult)
|
|
16680
16756
|
*/
|
|
@@ -24895,10 +24971,14 @@ declare namespace Enum {
|
|
|
24895
24971
|
}
|
|
24896
24972
|
export type PositionAlignmentMode = PositionAlignmentMode.OneAttachment | PositionAlignmentMode.TwoAttachment;
|
|
24897
24973
|
/**
|
|
24974
|
+
* Enum used with `RunService:SetPredictionMode()` to define the prediction mode for the instance.
|
|
24975
|
+
*
|
|
24898
24976
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PredictionMode)
|
|
24899
24977
|
*/
|
|
24900
24978
|
export namespace PredictionMode {
|
|
24901
24979
|
/**
|
|
24980
|
+
* The engine will automatically decide if this instance should be predicted or not. Currently, only `BaseParts` near the local player character's `Humanoid` will be predicted within a dynamic radius that grows and shrinks based on the device's capability to handle the simulation load.
|
|
24981
|
+
*
|
|
24902
24982
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PredictionMode#Automatic)
|
|
24903
24983
|
*/
|
|
24904
24984
|
export interface Automatic extends globalThis.EnumItem {
|
|
@@ -24908,6 +24988,8 @@ declare namespace Enum {
|
|
|
24908
24988
|
}
|
|
24909
24989
|
export const Automatic: Automatic;
|
|
24910
24990
|
/**
|
|
24991
|
+
* The instance will be predicted. Mismatches in the attributes of this instance between the client and server will cause a rollback and resimulation. If the instance is a `BasePart`, its physics properties will be predicted ahead of the replicated authoritative server state.
|
|
24992
|
+
*
|
|
24911
24993
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PredictionMode#On)
|
|
24912
24994
|
*/
|
|
24913
24995
|
export interface On extends globalThis.EnumItem {
|
|
@@ -24917,6 +24999,8 @@ declare namespace Enum {
|
|
|
24917
24999
|
}
|
|
24918
25000
|
export const On: On;
|
|
24919
25001
|
/**
|
|
25002
|
+
* The instance will **not** be predicted. Regular network ownership semantics apply.
|
|
25003
|
+
*
|
|
24920
25004
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PredictionMode#Off)
|
|
24921
25005
|
*/
|
|
24922
25006
|
export interface Off extends globalThis.EnumItem {
|
|
@@ -24931,10 +25015,14 @@ declare namespace Enum {
|
|
|
24931
25015
|
}
|
|
24932
25016
|
export type PredictionMode = PredictionMode.Automatic | PredictionMode.On | PredictionMode.Off;
|
|
24933
25017
|
/**
|
|
25018
|
+
* Enum used with `RunService:GetPredictionStatus()` to check the status of a specific instance.
|
|
25019
|
+
*
|
|
24934
25020
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PredictionStatus)
|
|
24935
25021
|
*/
|
|
24936
25022
|
export namespace PredictionStatus {
|
|
24937
25023
|
/**
|
|
25024
|
+
* This instance is authoritative.
|
|
25025
|
+
*
|
|
24938
25026
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PredictionStatus#Authoritative)
|
|
24939
25027
|
*/
|
|
24940
25028
|
export interface Authoritative extends globalThis.EnumItem {
|
|
@@ -24944,6 +25032,8 @@ declare namespace Enum {
|
|
|
24944
25032
|
}
|
|
24945
25033
|
export const Authoritative: Authoritative;
|
|
24946
25034
|
/**
|
|
25035
|
+
* This instance is being predicted.
|
|
25036
|
+
*
|
|
24947
25037
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PredictionStatus#Predicted)
|
|
24948
25038
|
*/
|
|
24949
25039
|
export interface Predicted extends globalThis.EnumItem {
|
|
@@ -24953,6 +25043,8 @@ declare namespace Enum {
|
|
|
24953
25043
|
}
|
|
24954
25044
|
export const Predicted: Predicted;
|
|
24955
25045
|
/**
|
|
25046
|
+
* The instance will not be resimulated; classic simulation rules apply instead.
|
|
25047
|
+
*
|
|
24956
25048
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PredictionStatus#None)
|
|
24957
25049
|
*/
|
|
24958
25050
|
export interface None extends globalThis.EnumItem {
|
|
@@ -29842,10 +29934,14 @@ declare namespace Enum {
|
|
|
29842
29934
|
}
|
|
29843
29935
|
export type Status = Status.Poison | Status.Confusion;
|
|
29844
29936
|
/**
|
|
29937
|
+
* Enum used with `RunService:BindToSimulation()` to indicate the frequency at which the bound function is called.
|
|
29938
|
+
*
|
|
29845
29939
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StepFrequency)
|
|
29846
29940
|
*/
|
|
29847
29941
|
export namespace StepFrequency {
|
|
29848
29942
|
/**
|
|
29943
|
+
* The bound function is called at 60 Hz.
|
|
29944
|
+
*
|
|
29849
29945
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StepFrequency#Hz60)
|
|
29850
29946
|
*/
|
|
29851
29947
|
export interface Hz60 extends globalThis.EnumItem {
|
|
@@ -29855,6 +29951,8 @@ declare namespace Enum {
|
|
|
29855
29951
|
}
|
|
29856
29952
|
export const Hz60: Hz60;
|
|
29857
29953
|
/**
|
|
29954
|
+
* The bound function is called at 30 Hz.
|
|
29955
|
+
*
|
|
29858
29956
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StepFrequency#Hz30)
|
|
29859
29957
|
*/
|
|
29860
29958
|
export interface Hz30 extends globalThis.EnumItem {
|
|
@@ -29864,6 +29962,8 @@ declare namespace Enum {
|
|
|
29864
29962
|
}
|
|
29865
29963
|
export const Hz30: Hz30;
|
|
29866
29964
|
/**
|
|
29965
|
+
* The bound function is called at 15 Hz.
|
|
29966
|
+
*
|
|
29867
29967
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StepFrequency#Hz15)
|
|
29868
29968
|
*/
|
|
29869
29969
|
export interface Hz15 extends globalThis.EnumItem {
|
|
@@ -29873,6 +29973,8 @@ declare namespace Enum {
|
|
|
29873
29973
|
}
|
|
29874
29974
|
export const Hz15: Hz15;
|
|
29875
29975
|
/**
|
|
29976
|
+
* The bound function is called at 10 Hz.
|
|
29977
|
+
*
|
|
29876
29978
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StepFrequency#Hz10)
|
|
29877
29979
|
*/
|
|
29878
29980
|
export interface Hz10 extends globalThis.EnumItem {
|
|
@@ -29882,6 +29984,8 @@ declare namespace Enum {
|
|
|
29882
29984
|
}
|
|
29883
29985
|
export const Hz10: Hz10;
|
|
29884
29986
|
/**
|
|
29987
|
+
* The bound function is called at 5 Hz.
|
|
29988
|
+
*
|
|
29885
29989
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StepFrequency#Hz5)
|
|
29886
29990
|
*/
|
|
29887
29991
|
export interface Hz5 extends globalThis.EnumItem {
|
|
@@ -29891,6 +29995,8 @@ declare namespace Enum {
|
|
|
29891
29995
|
}
|
|
29892
29996
|
export const Hz5: Hz5;
|
|
29893
29997
|
/**
|
|
29998
|
+
* The bound function is called at 1 Hz.
|
|
29999
|
+
*
|
|
29894
30000
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StepFrequency#Hz1)
|
|
29895
30001
|
*/
|
|
29896
30002
|
export interface Hz1 extends globalThis.EnumItem {
|