Skip to content

Commit

Permalink
Merge pull request #196 from damondriscoll/main
Browse files Browse the repository at this point in the history
fix(trove): allow RBXScriptConnection for Trackable type
  • Loading branch information
Sleitnick authored May 29, 2024
2 parents e9d9acf + fb92ad3 commit 4cb0ae2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion modules/trove/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,12 @@ type TroveInternal = Trove & {

--[=[
@within Trove
@type Trackable Instance | ConnectionLike | PromiseLike | thread | ((...any) -> ...any) | Destroyable | DestroyableLowercase | Disconnectable | DisconnectableLowercase
@type Trackable Instance | RBXScriptConnection | ConnectionLike | PromiseLike | thread | ((...any) -> ...any) | Destroyable | DestroyableLowercase | Disconnectable | DisconnectableLowercase
Represents all trackable objects by Trove.
]=]
export type Trackable =
Instance
| RBXScriptConnection
| ConnectionLike
| PromiseLike
| thread
Expand Down

0 comments on commit 4cb0ae2

Please sign in to comment.