type ArrayNonEmpty<T>
Accepts all arrays with at least one element.
Definition
export declare type ArrayNonEmpty<T> = [T, ...T[]];
type ArrayNonEmpty<T>
Accepts all arrays with at least one element.
export declare type ArrayNonEmpty<T> = [T, ...T[]];