@rbxts/types 1.0.781 → 1.0.783
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 +22 -4
- package/package.json +1 -1
|
@@ -12,6 +12,7 @@ interface Services {
|
|
|
12
12
|
AnimationFromVideoCreatorService: AnimationFromVideoCreatorService;
|
|
13
13
|
AnimationFromVideoCreatorStudioService: AnimationFromVideoCreatorStudioService;
|
|
14
14
|
AnnotationsService: AnnotationsService;
|
|
15
|
+
AppLifecycleObserverService: AppLifecycleObserverService;
|
|
15
16
|
AppUpdateService: AppUpdateService;
|
|
16
17
|
AssetCounterService: AssetCounterService;
|
|
17
18
|
AssetDeliveryProxy: AssetDeliveryProxy;
|
|
@@ -1276,7 +1277,10 @@ interface AccessoryDescription extends Instance {
|
|
|
1276
1277
|
Instance: Instance | undefined;
|
|
1277
1278
|
IsLayered: boolean;
|
|
1278
1279
|
Order: number;
|
|
1280
|
+
Position: Vector3;
|
|
1279
1281
|
Puffiness: number;
|
|
1282
|
+
Rotation: Vector3;
|
|
1283
|
+
Scale: Vector3;
|
|
1280
1284
|
}
|
|
1281
1285
|
|
|
1282
1286
|
interface AccountService extends Instance {
|
|
@@ -2277,6 +2281,17 @@ interface AnnotationsService extends Instance {
|
|
|
2277
2281
|
readonly _nominal_AnnotationsService: unique symbol;
|
|
2278
2282
|
}
|
|
2279
2283
|
|
|
2284
|
+
interface AppLifecycleObserverService extends Instance {
|
|
2285
|
+
/**
|
|
2286
|
+
* **DO NOT USE!**
|
|
2287
|
+
*
|
|
2288
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
2289
|
+
* @hidden
|
|
2290
|
+
* @deprecated
|
|
2291
|
+
*/
|
|
2292
|
+
readonly _nominal_AppLifecycleObserverService: unique symbol;
|
|
2293
|
+
}
|
|
2294
|
+
|
|
2280
2295
|
interface AppUpdateService extends Instance {
|
|
2281
2296
|
/**
|
|
2282
2297
|
* **DO NOT USE!**
|
|
@@ -3584,8 +3599,11 @@ interface AvatarGenerationJob extends Instance {
|
|
|
3584
3599
|
ErrorMessage: string;
|
|
3585
3600
|
Progress: number;
|
|
3586
3601
|
Status: Enum.AvatarGenerationJobStatus;
|
|
3587
|
-
Cancel(this: AvatarGenerationJob): void;
|
|
3588
3602
|
GetOutput(this: AvatarGenerationJob): object;
|
|
3603
|
+
/**
|
|
3604
|
+
* Tags: Yields
|
|
3605
|
+
*/
|
|
3606
|
+
Cancel(this: AvatarGenerationJob): void;
|
|
3589
3607
|
/**
|
|
3590
3608
|
* Tags: Yields
|
|
3591
3609
|
*/
|
|
@@ -11537,11 +11555,11 @@ interface FloatCurve extends Instance {
|
|
|
11537
11555
|
/**
|
|
11538
11556
|
* The first returned value is the index of the last key with key.time <= time (or min(1,length) if no key was found). The second returned value is the index of the first key with key.time >= time or the length of the curve if no key was found satisfying the inequality.
|
|
11539
11557
|
*/
|
|
11540
|
-
GetKeyIndicesAtTime(this: FloatCurve, time: number):
|
|
11558
|
+
GetKeyIndicesAtTime(this: FloatCurve, time: number): [before: number, after: number];
|
|
11541
11559
|
/**
|
|
11542
11560
|
* Returns a copy of all the keys in the FloatCurve as a Lua array of FloatCurveKey.
|
|
11543
11561
|
*/
|
|
11544
|
-
GetKeys(this: FloatCurve):
|
|
11562
|
+
GetKeys(this: FloatCurve): Array<FloatCurveKey>;
|
|
11545
11563
|
/**
|
|
11546
11564
|
* Samples the float curve at a given time passed as argument.
|
|
11547
11565
|
*/
|
|
@@ -11549,7 +11567,7 @@ interface FloatCurve extends Instance {
|
|
|
11549
11567
|
/**
|
|
11550
11568
|
* Adds the key passed as argument to this curve. If a key exists at the same time it will be replaced. First return value is true if a key was added, false if a previous key was replaced. Second return value is the index at which the marker was added.
|
|
11551
11569
|
*/
|
|
11552
|
-
InsertKey(this: FloatCurve, key: FloatCurveKey):
|
|
11570
|
+
InsertKey(this: FloatCurve, key: FloatCurveKey): [isNew: boolean, index: number];
|
|
11553
11571
|
/**
|
|
11554
11572
|
* Removes a given number of Keys starting from a given index. Returns the number of keys that were removed.
|
|
11555
11573
|
*/
|