@rbxts/types 1.0.882 → 1.0.884
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 +227 -53
- package/include/generated/PluginSecurity.d.ts +40 -16
- package/include/generated/enums.d.ts +523 -36
- package/package.json +1 -1
|
@@ -484,6 +484,7 @@ interface CreatableInstances {
|
|
|
484
484
|
StudioCallout: StudioCallout;
|
|
485
485
|
StyleDerive: StyleDerive;
|
|
486
486
|
StyleLink: StyleLink;
|
|
487
|
+
StyleQuery: StyleQuery;
|
|
487
488
|
StyleRule: StyleRule;
|
|
488
489
|
StyleSheet: StyleSheet;
|
|
489
490
|
SunRaysEffect: SunRaysEffect;
|
|
@@ -512,7 +513,6 @@ interface CreatableInstances {
|
|
|
512
513
|
TremoloSoundEffect: TremoloSoundEffect;
|
|
513
514
|
TrussPart: TrussPart;
|
|
514
515
|
UIAspectRatioConstraint: UIAspectRatioConstraint;
|
|
515
|
-
UIContainerQuery: UIContainerQuery;
|
|
516
516
|
UICorner: UICorner;
|
|
517
517
|
UIDragDetector: UIDragDetector;
|
|
518
518
|
UIFlexItem: UIFlexItem;
|
|
@@ -1883,6 +1883,8 @@ interface AudioSearchParams extends Instance {
|
|
|
1883
1883
|
readonly _nominal_AudioSearchParams: unique symbol;
|
|
1884
1884
|
}
|
|
1885
1885
|
/**
|
|
1886
|
+
* Converts spoken audio into text.
|
|
1887
|
+
*
|
|
1886
1888
|
* - **Tags**: NotBrowsable
|
|
1887
1889
|
*
|
|
1888
1890
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioSpeechToText)
|
|
@@ -8003,6 +8005,12 @@ interface MaterialVariant extends Instance {
|
|
|
8003
8005
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MaterialVariant#ColorMapContent)
|
|
8004
8006
|
*/
|
|
8005
8007
|
ColorMapContent: Content;
|
|
8008
|
+
/**
|
|
8009
|
+
* - **ThreadSafety**: ReadSafe
|
|
8010
|
+
*
|
|
8011
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MaterialVariant#EmissiveMaskContent)
|
|
8012
|
+
*/
|
|
8013
|
+
EmissiveMaskContent: Content;
|
|
8006
8014
|
/**
|
|
8007
8015
|
* Determines which parts of the surface are metal and are non-metal.
|
|
8008
8016
|
*
|
|
@@ -10145,6 +10153,8 @@ interface Plugin extends Instance {
|
|
|
10145
10153
|
*/
|
|
10146
10154
|
Negate(this: Plugin, objects: Array<Instance>): Array<Instance>;
|
|
10147
10155
|
/**
|
|
10156
|
+
* **Deprecated:**
|
|
10157
|
+
*
|
|
10148
10158
|
* Used to open the given script instance in an editor window, in Roblox studio, at the given line. If no line is given as an argument it will default to 1.
|
|
10149
10159
|
*
|
|
10150
10160
|
* - **ThreadSafety**: Unsafe
|
|
@@ -13269,6 +13279,21 @@ interface StyleLink extends Instance {
|
|
|
13269
13279
|
*/
|
|
13270
13280
|
readonly _nominal_StyleLink: unique symbol;
|
|
13271
13281
|
}
|
|
13282
|
+
/**
|
|
13283
|
+
* - **Tags**: NotReplicated, NotBrowsable
|
|
13284
|
+
*
|
|
13285
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StyleQuery)
|
|
13286
|
+
*/
|
|
13287
|
+
interface StyleQuery extends Instance {
|
|
13288
|
+
/**
|
|
13289
|
+
* **DO NOT USE!**
|
|
13290
|
+
*
|
|
13291
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
13292
|
+
* @hidden
|
|
13293
|
+
* @deprecated
|
|
13294
|
+
*/
|
|
13295
|
+
readonly _nominal_StyleQuery: unique symbol;
|
|
13296
|
+
}
|
|
13272
13297
|
/**
|
|
13273
13298
|
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
13274
13299
|
*
|
|
@@ -13313,6 +13338,12 @@ interface SurfaceAppearance extends Instance {
|
|
|
13313
13338
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SurfaceAppearance#ColorMapContent)
|
|
13314
13339
|
*/
|
|
13315
13340
|
set ColorMapContent(value: Content);
|
|
13341
|
+
/**
|
|
13342
|
+
* - **ThreadSafety**: ReadSafe
|
|
13343
|
+
*
|
|
13344
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SurfaceAppearance#EmissiveMaskContent)
|
|
13345
|
+
*/
|
|
13346
|
+
set EmissiveMaskContent(value: Content);
|
|
13316
13347
|
/**
|
|
13317
13348
|
* Determines which parts of the surface are metal or non-metal.
|
|
13318
13349
|
*
|
|
@@ -13592,6 +13623,12 @@ interface TerrainDetail extends Instance {
|
|
|
13592
13623
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TerrainDetail#ColorMapContent)
|
|
13593
13624
|
*/
|
|
13594
13625
|
ColorMapContent: Content;
|
|
13626
|
+
/**
|
|
13627
|
+
* - **ThreadSafety**: ReadSafe
|
|
13628
|
+
*
|
|
13629
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TerrainDetail#EmissiveMaskContent)
|
|
13630
|
+
*/
|
|
13631
|
+
EmissiveMaskContent: Content;
|
|
13595
13632
|
/**
|
|
13596
13633
|
* Determines which parts of the surface are metal and are non-metal.
|
|
13597
13634
|
*
|
|
@@ -14341,21 +14378,6 @@ interface UITextSizeConstraint extends UIConstraint {
|
|
|
14341
14378
|
*/
|
|
14342
14379
|
readonly _nominal_UITextSizeConstraint: unique symbol;
|
|
14343
14380
|
}
|
|
14344
|
-
/**
|
|
14345
|
-
* - **Tags**: NotReplicated, NotBrowsable
|
|
14346
|
-
*
|
|
14347
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UIContainerQuery)
|
|
14348
|
-
*/
|
|
14349
|
-
interface UIContainerQuery extends UIComponent {
|
|
14350
|
-
/**
|
|
14351
|
-
* **DO NOT USE!**
|
|
14352
|
-
*
|
|
14353
|
-
* This field exists to force TypeScript to recognize this as a nominal type
|
|
14354
|
-
* @hidden
|
|
14355
|
-
* @deprecated
|
|
14356
|
-
*/
|
|
14357
|
-
readonly _nominal_UIContainerQuery: unique symbol;
|
|
14358
|
-
}
|
|
14359
14381
|
/**
|
|
14360
14382
|
* UI modifier which applies deformation to corners of its parent `GuiObject`.
|
|
14361
14383
|
*
|
|
@@ -15172,6 +15194,8 @@ interface Wire extends Instance {
|
|
|
15172
15194
|
readonly _nominal_Wire: unique symbol;
|
|
15173
15195
|
}
|
|
15174
15196
|
/**
|
|
15197
|
+
* - **Tags**: NotBrowsable
|
|
15198
|
+
*
|
|
15175
15199
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/WrapTextureTransfer)
|
|
15176
15200
|
*/
|
|
15177
15201
|
interface WrapTextureTransfer extends Instance {
|