aboutsummaryrefslogtreecommitdiff
path: root/utils/types/non-empty-array.ts
blob: 59a6160127e2e5a4f9d16f3f68729fea494c14ba (plain)
1
2
/** A non-empty readonly array; the type system guarantees index 0 exists. */
export type NonEmptyArray<T> = readonly [T, ...T[]]