The Parameters function will extract Parameters from a Function type.
Example usage is shown below.
const T = Type.Function([Type.String(), Type.Number()], Type.Object({}))
const S = Type.Parameters(T) // const S: TTuple<[
// TString,
// TNumber
// ]>