UNPKG

@promptbook/remote-client

Version:

It's time for a paradigm shift. The future of software in plain English, French or Latin

9 lines (8 loc) 318 B
/** * Represents an array that is guaranteed to have at least one element */ export type NonEmptyArray<TItem> = [TItem, ...TItem[]]; /** * Represents an array that is guaranteed to have at least one element and is readonly */ export type NonEmptyReadonlyArray<TItem> = ReadonlyArray<TItem> & NonEmptyArray<TItem>;