export function typeParameter<A, B>(parameter: A, parameter2: B): [A, B] {
  return [parameter, parameter2]
}
