LastOfArray<T>: T extends [...(infer _), infer L]
    ? L
    : never

Returns the last element of an array

Type Parameters

  • T extends AnyArray