Type alias Apply1<S, A1>

Apply1<S, A1>: S extends Hkt1
    ? S & {
        arg1: A1;
    }
    : never

Applies the first type parameter to HKT.

Type Parameters

  • S

  • A1

Generated using TypeDoc