@rbxts/types 1.0.892 → 1.0.894

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.
@@ -31,6 +31,7 @@ interface Services {
31
31
  BadgeService: BadgeService;
32
32
  BugReporterService: BugReporterService;
33
33
  BulkImportService: BulkImportService;
34
+ CacheableContentProvider: CacheableContentProvider;
34
35
  CalloutService: CalloutService;
35
36
  CaptureService: CaptureService;
36
37
  ChangeHistoryStreamingService: ChangeHistoryStreamingService;
@@ -10070,6 +10071,23 @@ interface BulkImportService extends Instance {
10070
10071
  */
10071
10072
  readonly _nominal_BulkImportService: unique symbol;
10072
10073
  }
10074
+ /**
10075
+ * A variant of the `ContentProvider` that caches assets that have already been received. This service is not used directly, but it is used by the services that inherit from it.
10076
+ *
10077
+ * - **Tags**: NotCreatable, Service, NotReplicated
10078
+ *
10079
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CacheableContentProvider)
10080
+ */
10081
+ interface CacheableContentProvider extends Instance {
10082
+ /**
10083
+ * **DO NOT USE!**
10084
+ *
10085
+ * This field exists to force TypeScript to recognize this as a nominal type
10086
+ * @hidden
10087
+ * @deprecated
10088
+ */
10089
+ readonly _nominal_CacheableContentProvider: unique symbol;
10090
+ }
10073
10091
  /**
10074
10092
  * - **Tags**: NotCreatable, Service
10075
10093
  *
@@ -31,6 +31,7 @@ interface Services {
31
31
  BadgeService: BadgeService;
32
32
  BugReporterService: BugReporterService;
33
33
  BulkImportService: BulkImportService;
34
+ CacheableContentProvider: CacheableContentProvider;
34
35
  CalloutService: CalloutService;
35
36
  CaptureService: CaptureService;
36
37
  ChangeHistoryService: ChangeHistoryService;
@@ -2893,6 +2894,23 @@ interface BulkImportService extends Instance {
2893
2894
  */
2894
2895
  readonly _nominal_BulkImportService: unique symbol;
2895
2896
  }
2897
+ /**
2898
+ * A variant of the `ContentProvider` that caches assets that have already been received. This service is not used directly, but it is used by the services that inherit from it.
2899
+ *
2900
+ * - **Tags**: NotCreatable, Service, NotReplicated
2901
+ *
2902
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CacheableContentProvider)
2903
+ */
2904
+ interface CacheableContentProvider extends Instance {
2905
+ /**
2906
+ * **DO NOT USE!**
2907
+ *
2908
+ * This field exists to force TypeScript to recognize this as a nominal type
2909
+ * @hidden
2910
+ * @deprecated
2911
+ */
2912
+ readonly _nominal_CacheableContentProvider: unique symbol;
2913
+ }
2896
2914
  /**
2897
2915
  * - **Tags**: NotCreatable, Service
2898
2916
  *
@@ -2515,6 +2515,35 @@ interface UDim2Constructor {
2515
2515
 
2516
2516
  declare const UDim2: UDim2Constructor;
2517
2517
 
2518
+ // ValueCurveKey
2519
+ interface ValueCurveKey {
2520
+ /**
2521
+ * **DO NOT USE!**
2522
+ *
2523
+ * This field exists to force TypeScript to recognize this as a nominal type
2524
+ * @hidden
2525
+ * @deprecated
2526
+ */
2527
+ readonly _nominal_ValueCurveKey: unique symbol;
2528
+ /** The key interpolation mode for the segment started by this `ValueCurveKey`. */
2529
+ Interpolation: Enum.KeyInterpolationMode;
2530
+ /** The time position of this ValueCurveKey. */
2531
+ Time: number;
2532
+ /** The value of this ValueCurveKey. */
2533
+ Value: unknown;
2534
+ /** The tangent to the right of this ValueCurveKey. */
2535
+ RightTangent: number | undefined;
2536
+ /** The tangent to the left of this ValueCurveKey. */
2537
+ LeftTangent: number | undefined;
2538
+ }
2539
+
2540
+ interface ValueCurveKeyConstructor {
2541
+ /** Returns a new `ValueCurveKey` from the given time and value. */
2542
+ new (time: number, value: unknown, interpolation?: Enum.KeyInterpolationMode): ValueCurveKey;
2543
+ }
2544
+
2545
+ declare const ValueCurveKey: ValueCurveKeyConstructor;
2546
+
2518
2547
  // Vector2
2519
2548
  interface Vector2 {
2520
2549
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rbxts/types",
3
- "version": "1.0.892",
3
+ "version": "1.0.894",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },