UNPKG

@promptbook/remote-server

Version:

Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action

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>;