@tempots/std

FirstArgument type

Extracts the first argument type from a function type.

Signature:

export type FirstArgument<F> = F extends Fun1<infer A, unknown> ? A : never;

References: Fun1