| description | Learn more about: Type.FunctionParameters |
|---|---|
| title | Type.FunctionParameters |
| ms.subservice | m-source |
| ms.topic | reference |
Type.FunctionParameters(type as type) as record
Returns a record with field values set to the name of the parameters of type, and their values set to their corresponding types.
Find the types of the parameters to the function (x as number, y as text).
Usage
Type.FunctionParameters(type function (x as number, y as text) as any)
Output
[x = type number, y = type text]