@tempots/std > Fun6
Represents a function that takes six arguments of types A, B, C, D, E, F and returns a value of type R.
Signature:
export type Fun6<A, B, C, D, E, F, R> = (a: A, b: B, c: C, d: D, e: E, f: F) => R;