export declare type RestOrArray<T> = T[] | [ T[] ];
Represents data that may be an array or came from a rest parameter.