Type.FunctionParameters

Returns a dataset containing the names of the parameters and their corresponding values, with the parameters being of a specific type.

Syntax

Type.FunctionParameters(type as type) as record

About

Returns a dataset containing the names of the parameters and their corresponding values, with the parameters being of a specific type.

Explanation

Identify the data types of the parameters for the function (x as number, y as text) within Power Query MType. Additionally, consider the function's structure with the following parameters: type function (x as number, y as text) as any. The expected output will display the types of x and y as number and text, respectively.