@rbxts/types 1.0.829 → 1.0.831
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.
|
@@ -699,7 +699,7 @@ interface RBXObject {
|
|
|
699
699
|
* @param className The class against which the Object's class will be checked. Case-sensitive.
|
|
700
700
|
* @returns Describes whether the Object's class matched or is a subclass of the given class.
|
|
701
701
|
*/
|
|
702
|
-
IsA<T extends keyof Objects>(this:
|
|
702
|
+
IsA<T extends keyof Objects>(this: RBXObject, className: T): this is Objects[T];
|
|
703
703
|
/**
|
|
704
704
|
* Fired immediately after a property of the object changes, with some limitations.
|
|
705
705
|
*
|
|
@@ -23004,7 +23004,7 @@ interface MarketplaceService extends Instance {
|
|
|
23004
23004
|
*
|
|
23005
23005
|
* @param options Not available at this time.
|
|
23006
23006
|
*/
|
|
23007
|
-
PromptBulkPurchase(this: MarketplaceService, player: Player, lineItems: Array<
|
|
23007
|
+
PromptBulkPurchase(this: MarketplaceService, player: Player, lineItems: Array<PromptBulkPurchaseItem>, options: object): void;
|
|
23008
23008
|
/**
|
|
23009
23009
|
* Prompts a user to purchase a bundle with the given `bundleId`.
|
|
23010
23010
|
*
|
package/include/roblox.d.ts
CHANGED
|
@@ -3320,6 +3320,11 @@ interface ExpirationDetails {
|
|
|
3320
3320
|
ExpirationReason: Enum.SubscriptionExpirationReason;
|
|
3321
3321
|
}
|
|
3322
3322
|
|
|
3323
|
+
interface PromptBulkPurchaseItem {
|
|
3324
|
+
Id: string;
|
|
3325
|
+
Type: Enum.MarketplaceProductType;
|
|
3326
|
+
}
|
|
3327
|
+
|
|
3323
3328
|
interface PromptBulkPurchaseFinishedResults {
|
|
3324
3329
|
RobuxSpent: number;
|
|
3325
3330
|
Items: Array<{
|