@rbxts/types 1.0.848 → 1.0.850
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 +411 -61
- package/include/generated/PluginSecurity.d.ts +138 -12
- package/include/generated/enums.d.ts +527 -17
- package/package.json +1 -1
|
@@ -26,6 +26,7 @@ interface Services {
|
|
|
26
26
|
AvatarEditorService: AvatarEditorService;
|
|
27
27
|
AvatarImportService: AvatarImportService;
|
|
28
28
|
AvatarPreloader: AvatarPreloader;
|
|
29
|
+
AvatarSettings: AvatarSettings;
|
|
29
30
|
BadgeService: BadgeService;
|
|
30
31
|
BugReporterService: BugReporterService;
|
|
31
32
|
BulkImportService: BulkImportService;
|
|
@@ -272,10 +273,17 @@ interface CreatableInstances {
|
|
|
272
273
|
AudioListener: AudioListener;
|
|
273
274
|
AudioPitchShifter: AudioPitchShifter;
|
|
274
275
|
AudioPlayer: AudioPlayer;
|
|
276
|
+
AudioRecorder: AudioRecorder;
|
|
275
277
|
AudioReverb: AudioReverb;
|
|
276
278
|
AudioSearchParams: AudioSearchParams;
|
|
277
279
|
AudioTextToSpeech: AudioTextToSpeech;
|
|
278
280
|
AuroraScript: AuroraScript;
|
|
281
|
+
AvatarAccessoryRules: AvatarAccessoryRules;
|
|
282
|
+
AvatarAnimationRules: AvatarAnimationRules;
|
|
283
|
+
AvatarBodyRules: AvatarBodyRules;
|
|
284
|
+
AvatarClothingRules: AvatarClothingRules;
|
|
285
|
+
AvatarCollisionRules: AvatarCollisionRules;
|
|
286
|
+
AvatarRules: AvatarRules;
|
|
279
287
|
Backpack: Backpack;
|
|
280
288
|
BallSocketConstraint: BallSocketConstraint;
|
|
281
289
|
Beam: Beam;
|
|
@@ -536,6 +544,7 @@ interface Instances extends Services, CreatableInstances {
|
|
|
536
544
|
AssetPatchSettings: AssetPatchSettings;
|
|
537
545
|
AssetSoundEffect: AssetSoundEffect;
|
|
538
546
|
AudioPages: AudioPages;
|
|
547
|
+
AuroraScriptObject: AuroraScriptObject;
|
|
539
548
|
BackpackItem: BackpackItem;
|
|
540
549
|
BanHistoryPages: BanHistoryPages;
|
|
541
550
|
BaseImportData: BaseImportData;
|
|
@@ -1740,6 +1749,21 @@ interface AudioPlayer extends Instance {
|
|
|
1740
1749
|
*/
|
|
1741
1750
|
readonly _nominal_AudioPlayer: unique symbol;
|
|
1742
1751
|
}
|
|
1752
|
+
/**
|
|
1753
|
+
* - **Tags**: NotBrowsable
|
|
1754
|
+
*
|
|
1755
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioRecorder)
|
|
1756
|
+
*/
|
|
1757
|
+
interface AudioRecorder extends Instance {
|
|
1758
|
+
/**
|
|
1759
|
+
* **DO NOT USE!**
|
|
1760
|
+
*
|
|
1761
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
1762
|
+
* @hidden
|
|
1763
|
+
* @deprecated
|
|
1764
|
+
*/
|
|
1765
|
+
readonly _nominal_AudioRecorder: unique symbol;
|
|
1766
|
+
}
|
|
1743
1767
|
/**
|
|
1744
1768
|
* Reverberates audio streams.
|
|
1745
1769
|
*
|
|
@@ -1773,6 +1797,8 @@ interface AudioSearchParams extends Instance {
|
|
|
1773
1797
|
readonly _nominal_AudioSearchParams: unique symbol;
|
|
1774
1798
|
}
|
|
1775
1799
|
/**
|
|
1800
|
+
* Plays text as speech audio.
|
|
1801
|
+
*
|
|
1776
1802
|
* - **Tags**: NotBrowsable
|
|
1777
1803
|
*
|
|
1778
1804
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioTextToSpeech)
|
|
@@ -1787,6 +1813,23 @@ interface AudioTextToSpeech extends Instance {
|
|
|
1787
1813
|
*/
|
|
1788
1814
|
readonly _nominal_AudioTextToSpeech: unique symbol;
|
|
1789
1815
|
}
|
|
1816
|
+
/**
|
|
1817
|
+
* - **Tags**: NotCreatable
|
|
1818
|
+
*
|
|
1819
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraScriptObject)
|
|
1820
|
+
*
|
|
1821
|
+
* @deprecated
|
|
1822
|
+
*/
|
|
1823
|
+
interface AuroraScriptObject extends Instance {
|
|
1824
|
+
/**
|
|
1825
|
+
* **DO NOT USE!**
|
|
1826
|
+
*
|
|
1827
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
1828
|
+
* @hidden
|
|
1829
|
+
* @deprecated
|
|
1830
|
+
*/
|
|
1831
|
+
readonly _nominal_AuroraScriptObject: unique symbol;
|
|
1832
|
+
}
|
|
1790
1833
|
/**
|
|
1791
1834
|
* - **Tags**: NotCreatable, Service
|
|
1792
1835
|
*
|
|
@@ -1803,12 +1846,6 @@ interface AuroraScriptService extends Instance {
|
|
|
1803
1846
|
* @deprecated
|
|
1804
1847
|
*/
|
|
1805
1848
|
readonly _nominal_AuroraScriptService: unique symbol;
|
|
1806
|
-
/**
|
|
1807
|
-
* - **ThreadSafety**: ReadSafe
|
|
1808
|
-
*
|
|
1809
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraScriptService#BufferSize)
|
|
1810
|
-
*/
|
|
1811
|
-
set BufferSize(value: number);
|
|
1812
1849
|
}
|
|
1813
1850
|
/**
|
|
1814
1851
|
* - **Tags**: NotCreatable, Service
|
|
@@ -1827,6 +1864,45 @@ interface AuroraService extends Instance {
|
|
|
1827
1864
|
*/
|
|
1828
1865
|
readonly _nominal_AuroraService: unique symbol;
|
|
1829
1866
|
}
|
|
1867
|
+
/**
|
|
1868
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarAccessoryRules)
|
|
1869
|
+
*/
|
|
1870
|
+
interface AvatarAccessoryRules extends Instance {
|
|
1871
|
+
/**
|
|
1872
|
+
* **DO NOT USE!**
|
|
1873
|
+
*
|
|
1874
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
1875
|
+
* @hidden
|
|
1876
|
+
* @deprecated
|
|
1877
|
+
*/
|
|
1878
|
+
readonly _nominal_AvatarAccessoryRules: unique symbol;
|
|
1879
|
+
}
|
|
1880
|
+
/**
|
|
1881
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarAnimationRules)
|
|
1882
|
+
*/
|
|
1883
|
+
interface AvatarAnimationRules extends Instance {
|
|
1884
|
+
/**
|
|
1885
|
+
* **DO NOT USE!**
|
|
1886
|
+
*
|
|
1887
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
1888
|
+
* @hidden
|
|
1889
|
+
* @deprecated
|
|
1890
|
+
*/
|
|
1891
|
+
readonly _nominal_AvatarAnimationRules: unique symbol;
|
|
1892
|
+
}
|
|
1893
|
+
/**
|
|
1894
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarBodyRules)
|
|
1895
|
+
*/
|
|
1896
|
+
interface AvatarBodyRules extends Instance {
|
|
1897
|
+
/**
|
|
1898
|
+
* **DO NOT USE!**
|
|
1899
|
+
*
|
|
1900
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
1901
|
+
* @hidden
|
|
1902
|
+
* @deprecated
|
|
1903
|
+
*/
|
|
1904
|
+
readonly _nominal_AvatarBodyRules: unique symbol;
|
|
1905
|
+
}
|
|
1830
1906
|
/**
|
|
1831
1907
|
* - **Tags**: NotCreatable, Service
|
|
1832
1908
|
*
|
|
@@ -1842,6 +1918,32 @@ interface AvatarChatService extends Instance {
|
|
|
1842
1918
|
*/
|
|
1843
1919
|
readonly _nominal_AvatarChatService: unique symbol;
|
|
1844
1920
|
}
|
|
1921
|
+
/**
|
|
1922
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarClothingRules)
|
|
1923
|
+
*/
|
|
1924
|
+
interface AvatarClothingRules extends Instance {
|
|
1925
|
+
/**
|
|
1926
|
+
* **DO NOT USE!**
|
|
1927
|
+
*
|
|
1928
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
1929
|
+
* @hidden
|
|
1930
|
+
* @deprecated
|
|
1931
|
+
*/
|
|
1932
|
+
readonly _nominal_AvatarClothingRules: unique symbol;
|
|
1933
|
+
}
|
|
1934
|
+
/**
|
|
1935
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarCollisionRules)
|
|
1936
|
+
*/
|
|
1937
|
+
interface AvatarCollisionRules extends Instance {
|
|
1938
|
+
/**
|
|
1939
|
+
* **DO NOT USE!**
|
|
1940
|
+
*
|
|
1941
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
1942
|
+
* @hidden
|
|
1943
|
+
* @deprecated
|
|
1944
|
+
*/
|
|
1945
|
+
readonly _nominal_AvatarCollisionRules: unique symbol;
|
|
1946
|
+
}
|
|
1845
1947
|
/**
|
|
1846
1948
|
* A service to support developer avatar creators.
|
|
1847
1949
|
*
|
|
@@ -1906,6 +2008,34 @@ interface AvatarPreloader extends Instance {
|
|
|
1906
2008
|
*/
|
|
1907
2009
|
readonly _nominal_AvatarPreloader: unique symbol;
|
|
1908
2010
|
}
|
|
2011
|
+
/**
|
|
2012
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarRules)
|
|
2013
|
+
*/
|
|
2014
|
+
interface AvatarRules extends Instance {
|
|
2015
|
+
/**
|
|
2016
|
+
* **DO NOT USE!**
|
|
2017
|
+
*
|
|
2018
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
2019
|
+
* @hidden
|
|
2020
|
+
* @deprecated
|
|
2021
|
+
*/
|
|
2022
|
+
readonly _nominal_AvatarRules: unique symbol;
|
|
2023
|
+
}
|
|
2024
|
+
/**
|
|
2025
|
+
* - **Tags**: NotCreatable, Service
|
|
2026
|
+
*
|
|
2027
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarSettings)
|
|
2028
|
+
*/
|
|
2029
|
+
interface AvatarSettings extends Instance {
|
|
2030
|
+
/**
|
|
2031
|
+
* **DO NOT USE!**
|
|
2032
|
+
*
|
|
2033
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
2034
|
+
* @hidden
|
|
2035
|
+
* @deprecated
|
|
2036
|
+
*/
|
|
2037
|
+
readonly _nominal_AvatarSettings: unique symbol;
|
|
2038
|
+
}
|
|
1909
2039
|
/**
|
|
1910
2040
|
* A container object that holds a player's inventory. Any `Tool` in a player's Backpack will be displayed in their inventory at the bottom of their screen.
|
|
1911
2041
|
*
|
|
@@ -7451,12 +7581,6 @@ interface AuroraScript extends LuaSourceContainer {
|
|
|
7451
7581
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraScript#Source)
|
|
7452
7582
|
*/
|
|
7453
7583
|
Source: ProtectedString;
|
|
7454
|
-
/**
|
|
7455
|
-
* - **ThreadSafety**: ReadSafe
|
|
7456
|
-
*
|
|
7457
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraScript#Tag)
|
|
7458
|
-
*/
|
|
7459
|
-
set Tag(value: string);
|
|
7460
7584
|
}
|
|
7461
7585
|
/**
|
|
7462
7586
|
* The base class for all script objects which run automatically.
|
|
@@ -14520,6 +14644,8 @@ interface VoiceChatService extends Instance {
|
|
|
14520
14644
|
*/
|
|
14521
14645
|
readonly _nominal_VoiceChatService: unique symbol;
|
|
14522
14646
|
/**
|
|
14647
|
+
* Determines which distance attenuation curve the default voice chat setup uses when `AudioDeviceInput` and `AudioEmitter` objects are generated.
|
|
14648
|
+
*
|
|
14523
14649
|
* - **ThreadSafety**: ReadSafe
|
|
14524
14650
|
*
|
|
14525
14651
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VoiceChatService#DefaultDistanceAttenuation)
|