@rbxts/types 1.0.893 → 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
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rbxts/types",
3
- "version": "1.0.893",
3
+ "version": "1.0.894",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },