@rbxts/types 1.0.749 → 1.0.750

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.
@@ -3177,7 +3177,15 @@ interface AvatarEditorService extends Instance {
3177
3177
  *
3178
3178
  * Tags: Yields
3179
3179
  */
3180
- GetInventory(this: AvatarEditorService, assetTypes: ReadonlyArray<Enum.AvatarAssetType>): InventoryPages;
3180
+ GetInventory(
3181
+ this: AvatarEditorService,
3182
+ assetTypes: ReadonlyArray<Enum.AvatarAssetType>,
3183
+ ): InventoryPages<{
3184
+ AssetId: number;
3185
+ AssetType: string;
3186
+ Created: string;
3187
+ Name: string;
3188
+ }>;
3181
3189
  /**
3182
3190
  * This function returns the item details for the given item. It accepts two parameters - the first indicating the ID of the item being retrieved and the second indicating its [ItemType](https://developer.roblox.com/en-us/api-reference/enum/ItemType).
3183
3191
  *
@@ -20122,7 +20130,7 @@ interface KeyframeSequenceProvider extends Instance {
20122
20130
  *
20123
20131
  * Tags: Yields
20124
20132
  */
20125
- GetAnimations(this: KeyframeSequenceProvider, userId: number): InventoryPages;
20133
+ GetAnimations(this: KeyframeSequenceProvider, userId: number): InventoryPages<number>;
20126
20134
  /**
20127
20135
  * GetKeyframeSequenceAsync returns a [KeyframeSequence](https://developer.roblox.com/en-us/api-reference/class/KeyframeSequence) based on the specified assetId. The assetId must correspond to an animation. The function will yield until the [KeyframeSequence](https://developer.roblox.com/en-us/api-reference/class/KeyframeSequence) is loaded from the website. Because this is a webcall it should wrapped in a pcall.
20128
20136
  *
@@ -26899,7 +26907,7 @@ interface FriendPages
26899
26907
  }
26900
26908
 
26901
26909
  /** The InventoryPages class is used in the case of iterating over a specific category in a user's inventory. */
26902
- interface InventoryPages extends Pages<number> {
26910
+ interface InventoryPages<T = unknown> extends Pages<T> {
26903
26911
  /**
26904
26912
  * **DO NOT USE!**
26905
26913
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rbxts/types",
3
- "version": "1.0.749",
3
+ "version": "1.0.750",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },