Type.FunctionParameters
통사론
Type.FunctionParameters(type as type) as record
소개
필드 값이 type
매개 변수의 이름으로 설정되고 해당 값이 해당 형식으로 설정된 레코드를 반환합니다.
예제 1
함수 (x as number, y as text)
매개 변수 형식을 찾습니다.
사용량
Type.FunctionParameters(type function (x as number, y as text) as any)
출력
[x = type number, y = type text]