You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A lot of the times, the type checker can be wrong, you might have forgot to define some types properly, or just want to mute a warning regardless of context.
For example:
localparts=Model:GetChildren():: {BasePart} -- Type Error: Cannot cast '{Instance}' into '{BasePart}' because the types are unrelated
A potentially nice QOL addition would be similar to this: (like CSS's !important):
localparts=Model:GetChildren()::! {BasePart} -- No issue.
The text was updated successfully, but these errors were encountered:
A lot of the times, the type checker can be wrong, you might have forgot to define some types properly, or just want to mute a warning regardless of context.
For example:
A potentially nice QOL addition would be similar to this: (like CSS's !important):
The text was updated successfully, but these errors were encountered: