Add comment about CFrame.__mul

This commit is contained in:
ajeffrey@roblox.com 2022-04-05 17:21:11 -05:00
parent 8845d33e4d
commit 2fb0ef80ad

View file

@ -150,3 +150,7 @@ We could normalize all types to have the same return type, by equating `(S1 -> T
```
which is not in `(string | number) -> never`.
The Roblox API does have some overloaded functions where the return
type depends on the argument type, for wexample `CFrame.__mul` has
type `(CFrame -> CFrame) & (Vector3 -> Vector3)`.