Description
The following methods of Workspace | WorldModel have incorrect Types for arrays with BaseParts in them as they are incorrectly typed as {Instance} instead of {BasePart}.
workspace:ArePartsTouchingOthers() -- argument 'partList' should be {BasePart}
workspace:BulkMoveTo() -- argument 'partList' should be {BasePart}
-- (argument 'cframeList' should also be {CFrame})
workspace:JoinToOutsiders() -- argument 'objects' should be {BasePart}
workspace:UnjoinFromOutsiders() -- argument 'objects' should be {BasePart}
workspace:GetPartBoundsInBox() -- return should be {BasePart}
workspace:GetPartBoundsInRadius() -- return should be {BasePart}
workspace:GetPartsInPart() -- return should be {BasePart}
workspace:Raycast() -- return 'Instance' should be BasePart?