Type Alias ArgList<T>

ArgList<T>: T extends Variable[]
    ? T
    : never

Conditional type for argument lists of reactions. If the type variable T is inferred to be a subtype of Variable[] it will yield T; it will yield never if T is not a subtype of Variable[].

Type Parameters

  • T

Reaction