mirror of
https://github.com/0x5eal/luau-unzip.git
synced 2025-04-04 06:30:53 +01:00
59 lines
936 B
Text
59 lines
936 B
Text
--> Copied from https://github.com/lune-org/docs/blob/0a1e5a/.lune/moonwave.luau
|
|
|
|
export type Source = {
|
|
path: string,
|
|
line: number,
|
|
}
|
|
|
|
export type FunctionParam = {
|
|
name: string,
|
|
desc: string,
|
|
lua_type: string,
|
|
}
|
|
|
|
export type FunctionReturn = {
|
|
desc: string,
|
|
lua_type: string,
|
|
}
|
|
|
|
export type Function = {
|
|
name: string,
|
|
desc: string,
|
|
params: { FunctionParam },
|
|
returns: { FunctionReturn },
|
|
function_type: string,
|
|
tags: { string }?,
|
|
ignore: boolean,
|
|
private: boolean,
|
|
source: Source,
|
|
}
|
|
|
|
export type Property = {
|
|
name: string,
|
|
desc: string,
|
|
lua_type: string,
|
|
tags: { string }?,
|
|
ignore: boolean,
|
|
source: Source,
|
|
}
|
|
|
|
export type Type = {
|
|
name: string,
|
|
desc: string,
|
|
lua_type: string,
|
|
ignore: boolean,
|
|
private: boolean,
|
|
fields: { Property },
|
|
source: Source,
|
|
}
|
|
|
|
export type Item = {
|
|
name: string,
|
|
desc: string,
|
|
functions: { Function },
|
|
properties: { Property },
|
|
types: { Type },
|
|
source: Source,
|
|
}
|
|
|
|
return {}
|