@rbxts/types 1.0.802 → 1.0.804
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.
|
@@ -10432,7 +10432,7 @@ interface DataStoreKeyInfo extends Instance {
|
|
|
10432
10432
|
*
|
|
10433
10433
|
* * [Data Stores](https://developer.roblox.com/en-us/articles/data-store), an in-depth guide on data structure, management, error handling, etc.
|
|
10434
10434
|
*/
|
|
10435
|
-
GetUserIds(this: DataStoreKeyInfo):
|
|
10435
|
+
GetUserIds(this: DataStoreKeyInfo): Array<number>;
|
|
10436
10436
|
}
|
|
10437
10437
|
|
|
10438
10438
|
/** An instance describing version information for a key, including the version string, created time, and whether it has been marked as deleted.
|
|
@@ -31585,7 +31585,7 @@ interface DataModel extends ServiceProvider<Services> {
|
|
|
31585
31585
|
*
|
|
31586
31586
|
* * [PluginGui:BindToClose](https://developer.roblox.com/en-us/api-reference/function/PluginGui/BindToClose), which is used to bind a function to a [PluginGui](https://developer.roblox.com/en-us/api-reference/class/PluginGui) close button and should not be confused with this function
|
|
31587
31587
|
*/
|
|
31588
|
-
BindToClose(this: DataModel, callback: () => void): void;
|
|
31588
|
+
BindToClose(this: DataModel, callback: (reason: Enum.CloseReason) => void): void;
|
|
31589
31589
|
/**
|
|
31590
31590
|
* This function will always return a blank string. It was originally used to set the message displayed on screen while the game was loading.
|
|
31591
31591
|
*
|