@rbxts/types 1.0.813 → 1.0.816
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 +1 -1
- package/include/generated/None.d.ts +39547 -38807
- package/include/generated/PluginSecurity.d.ts +13960 -4341
- package/include/generated/enums.d.ts +31448 -23660
- package/include/roblox.d.ts +73 -0
- package/package.json +1 -1
package/include/roblox.d.ts
CHANGED
|
@@ -32,6 +32,9 @@ type ChangedSignal = {
|
|
|
32
32
|
type Tweenable = number | boolean | CFrame | Rect | Color3 | UDim | UDim2 | Vector2 | Vector2int16 | Vector3;
|
|
33
33
|
|
|
34
34
|
type ContentId = string;
|
|
35
|
+
type BinaryString = string;
|
|
36
|
+
type SharedString = string;
|
|
37
|
+
type ProtectedString = string;
|
|
35
38
|
|
|
36
39
|
interface EmoteDictionary {
|
|
37
40
|
/** When these arrays have more than one emote id in them, it will randomly select one of the emotes to play from the list. */
|
|
@@ -824,6 +827,18 @@ interface InstanceConstructor {
|
|
|
824
827
|
|
|
825
828
|
declare const Instance: InstanceConstructor;
|
|
826
829
|
|
|
830
|
+
// AdReward
|
|
831
|
+
interface AdReward {
|
|
832
|
+
/**
|
|
833
|
+
* **DO NOT USE!**
|
|
834
|
+
*
|
|
835
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
836
|
+
* @hidden
|
|
837
|
+
* @deprecated
|
|
838
|
+
*/
|
|
839
|
+
readonly _nominal_AdReward: unique symbol;
|
|
840
|
+
}
|
|
841
|
+
|
|
827
842
|
/**
|
|
828
843
|
* Axes is a datatype used for the ArcHandles class to control what rotation axes are currently enabled.
|
|
829
844
|
*/
|
|
@@ -1311,6 +1326,42 @@ interface CatalogSearchParamsConstructor {
|
|
|
1311
1326
|
|
|
1312
1327
|
declare const CatalogSearchParams: CatalogSearchParamsConstructor;
|
|
1313
1328
|
|
|
1329
|
+
// Content
|
|
1330
|
+
interface Content {
|
|
1331
|
+
/**
|
|
1332
|
+
* **DO NOT USE!**
|
|
1333
|
+
*
|
|
1334
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
1335
|
+
* @hidden
|
|
1336
|
+
* @deprecated
|
|
1337
|
+
*/
|
|
1338
|
+
readonly _nominal_Content: unique symbol;
|
|
1339
|
+
/**
|
|
1340
|
+
* The source type of the contained value.
|
|
1341
|
+
*/
|
|
1342
|
+
readonly SourceType: Enum.ContentSourceType;
|
|
1343
|
+
/**
|
|
1344
|
+
* A URI `string` if `Content.SourceType` is Uri, otherwise `nil`.
|
|
1345
|
+
*/
|
|
1346
|
+
readonly Uri?: string;
|
|
1347
|
+
/**
|
|
1348
|
+
* A reference to a non-nil `Object` if `Content.SourceType` is Object, otherwise `nil`.
|
|
1349
|
+
*/
|
|
1350
|
+
readonly Object?: RBXObject;
|
|
1351
|
+
}
|
|
1352
|
+
|
|
1353
|
+
interface ContentConstructor {
|
|
1354
|
+
/**
|
|
1355
|
+
* An empty Content value with Content.SourceType of None.
|
|
1356
|
+
*/
|
|
1357
|
+
readonly none: Content;
|
|
1358
|
+
|
|
1359
|
+
fromUri: (uri: string) => Content;
|
|
1360
|
+
fromObject: (object: RBXObject) => Content;
|
|
1361
|
+
}
|
|
1362
|
+
|
|
1363
|
+
declare const Content: ContentConstructor;
|
|
1364
|
+
|
|
1314
1365
|
// CFrame
|
|
1315
1366
|
interface CFrame {
|
|
1316
1367
|
/**
|
|
@@ -2222,6 +2273,26 @@ type RotationCurveKeyConstructor = new (
|
|
|
2222
2273
|
) => RotationCurveKey;
|
|
2223
2274
|
declare const RotationCurveKey: RotationCurveKeyConstructor;
|
|
2224
2275
|
|
|
2276
|
+
// SecurityCapabilities
|
|
2277
|
+
interface SecurityCapabilities {
|
|
2278
|
+
/**
|
|
2279
|
+
* **DO NOT USE!**
|
|
2280
|
+
*
|
|
2281
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
2282
|
+
* @hidden
|
|
2283
|
+
* @deprecated
|
|
2284
|
+
*/
|
|
2285
|
+
readonly _nominal_SecurityCapabilities: unique symbol;
|
|
2286
|
+
Add(this: SecurityCapabilities, ...capabilities: Array<Enum.SecurityCapability>): void;
|
|
2287
|
+
Remove(this: SecurityCapabilities, ...capabilities: Array<Enum.SecurityCapability>): void;
|
|
2288
|
+
Contains(this: SecurityCapabilities, ...capabilities: Array<Enum.SecurityCapability>): void;
|
|
2289
|
+
}
|
|
2290
|
+
|
|
2291
|
+
interface SecurityCapabilitiesConstructor {
|
|
2292
|
+
new (...capabilities: Array<Enum.SecurityCapability>): SecurityCapabilities;
|
|
2293
|
+
fromCurrent: () => SecurityCapabilities;
|
|
2294
|
+
}
|
|
2295
|
+
|
|
2225
2296
|
interface Secret {
|
|
2226
2297
|
/**
|
|
2227
2298
|
* **DO NOT USE!**
|
|
@@ -3159,3 +3230,5 @@ interface UserSubscriptionStatus {
|
|
|
3159
3230
|
interface ExpirationDetails {
|
|
3160
3231
|
ExpirationReason: Enum.SubscriptionExpirationReason;
|
|
3161
3232
|
}
|
|
3233
|
+
|
|
3234
|
+
// 7F8EA37-8BD5-4084-99CC-86CE4D418DB6
|