RestOrArrayexport declare type RestOrArray<T> = T[] | [T[]];export declare type RestOrArray<T> = T[] | [T[]];SummaryRepresents data that may be an array or came from a rest parameter.RemarksThis type is used throughout builders to ensure both an array and variadic arguments may be used. It is normalized with normalizeArray.
RestOrArrayexport declare type RestOrArray<T> = T[] | [T[]];export declare type RestOrArray<T> = T[] | [T[]];SummaryRepresents data that may be an array or came from a rest parameter.RemarksThis type is used throughout builders to ensure both an array and variadic arguments may be used. It is normalized with normalizeArray.