@rbxts/types 1.0.873 → 1.0.875
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.
|
@@ -39888,7 +39888,7 @@ interface TextChannel extends Instance {
|
|
|
39888
39888
|
* @param userId The userId of the `Player`.
|
|
39889
39889
|
* @returns Returns `TextSource` and `true` if a new `TextSource` is created for the user, `TextSource` and `false` if there is an existing `TextSource`, or `nil` and `false` if the user has chat off or is not in this server.
|
|
39890
39890
|
*/
|
|
39891
|
-
AddUserAsync(this: TextChannel, userId: number): [
|
|
39891
|
+
AddUserAsync(this: TextChannel, userId: number): LuaTuple<[
|
|
39892
39892
|
source: TextSource,
|
|
39893
39893
|
isNew: true
|
|
39894
39894
|
] | [
|
|
@@ -39897,7 +39897,7 @@ interface TextChannel extends Instance {
|
|
|
39897
39897
|
] | [
|
|
39898
39898
|
source: undefined,
|
|
39899
39899
|
isNew: false
|
|
39900
|
-
]
|
|
39900
|
+
]>;
|
|
39901
39901
|
/**
|
|
39902
39902
|
* Sends a `TextChatMessage` to the server.
|
|
39903
39903
|
*
|
package/include/roblox.d.ts
CHANGED
|
@@ -3257,7 +3257,7 @@ interface SubscriptionInfo {
|
|
|
3257
3257
|
/**
|
|
3258
3258
|
* The asset ID of the subscription product icon.
|
|
3259
3259
|
*/
|
|
3260
|
-
|
|
3260
|
+
IconImageAssetId: number;
|
|
3261
3261
|
/**
|
|
3262
3262
|
* The duration of the subscription (for example, `Month`, `Year`, etc.).
|
|
3263
3263
|
*/
|