import { Pagination } from './pagination'; /** * Response form Backend * input T */ export interface ResponseData { /** * input T */ _embedded: T; /** * Links */ _links: object; /** * Pages */ page: Pagination; }