export interface IExpand { [key: string]: Partial<{ select: string | Array; search: string; expand: IExpand; skip: string | number; top: string | number; }>; } export declare type Expand = IExpand | string | Array | Array;