Document how to actually use an exported type from another module. (#40)

This commit is contained in:
Andy Friesen 2021-05-28 10:31:47 -07:00 committed by GitHub
parent cc399fa98d
commit fc4cfede58
Signed by: DevComp
GPG key ID: 4AEE18F83AFDEB23

View file

@ -165,4 +165,12 @@ By default type aliases are local to the file they are declared in. To be able t
export type Point = { x: number, y: number }
```
An exported type can be used in another module by prefixing its name with the require alias that you used to import the module.
```lua
local M = require(Other.Module)
local a: M.Point = {x=5, y=6}
```
For more information please refer to [typechecking documentation](typecheck).