MethodData
Arguments
The arguments that the method takes.
It is an array whose values are of the type MethodParameter.
Description
A description of the method.
It is of the type string.
It may also be nil.
Name
The name of the method.
It is of the type string.
Results
It is an array whose values are of the type MethodParameter.
Luau Type
This is the luau type for MethodData. It may help clear up mistranslations from the raw data to the wiki page (as it is an automatic process).
export type MethodData = {
Name: string,
Arguments: { MethodParameter },
Description: string?,
Results: { MethodParameter },
}