mirror of
https://github.com/luau-lang/luau.git
synced 2025-04-05 03:10:54 +01:00
Document how to actually use an exported type from another module. (#40)
This commit is contained in:
parent
cc399fa98d
commit
fc4cfede58
1 changed files with 8 additions and 0 deletions
|
@ -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 }
|
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).
|
For more information please refer to [typechecking documentation](typecheck).
|
||||||
|
|
Loading…
Add table
Reference in a new issue