/** * Array with at least one item */ export declare type ArrayFull = { 0: T; } & T[]; /** * Array with at least two items */ export declare type ArrayFull2 = { 0: T; 1: T; } & T[];