export interface IPagination { results: IData[]; view: IView; } export interface IView { total: number; page: number; itemsPerPage: number; }