@tempots/std

Fun6 type

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: A, b: B, c: C, d: D, e: E, f: F) => R;