mirror of
https://github.com/luau-lang/luau.git
synced 2025-05-04 10:33:46 +01:00
Attempt type fix
This commit is contained in:
parent
1d528bada6
commit
f45e79e8ec
2 changed files with 3 additions and 0 deletions
|
@ -193,6 +193,8 @@ declare function rawlen<K, V>(obj: {[K]: V} | string): number
|
|||
|
||||
declare function setfenv<T..., R...>(target: number | (T...) -> R..., env: {[string]: any}): ((T...) -> R...)?
|
||||
|
||||
declare function mwait<T..., R...>(ms: number)?
|
||||
|
||||
declare function ipairs<V>(tab: {V}): (({V}, number) -> (number?, V), {V}, number)
|
||||
|
||||
declare function pcall<A..., R...>(f: (A...) -> R..., ...: A...): (boolean, R...)
|
||||
|
|
|
@ -104,6 +104,7 @@ static const std::string kNames[] = {
|
|||
"min",
|
||||
"modf",
|
||||
"move",
|
||||
"mwait",
|
||||
"newproxy",
|
||||
"next",
|
||||
"nil",
|
||||
|
|
Loading…
Add table
Reference in a new issue