Syntax
getsignalargumentsinfo(signal: userdata): tableArguments
| Name | Type | Description |
|---|---|---|
signal | userdata | Signal or event object to inspect or fire. |
Returns
| Name | Type | Description |
|---|---|---|
argumentInfo | table | Metadata describing captured arguments. |
Description
Returns metadata about captured signal arguments.
Call it with 1 parameter(s): signal. The argument table explains which values are required and which ones only refine the behavior.
It returns argumentInfo (table). Use the returns table to separate successful values from nil results and recoverable errors.
Example
Example call with placeholder values.
local result = getsignalargumentsinfo(game)
print(result)