UNPKG

@netgrif/components-core

Version:

Netgrif Application engine frontend core Angular library

20 lines (19 loc) 273 B
import { Pagination } from './pagination'; /** * Response form Backend * input T */ export interface ResponseData<T> { /** * input T */ _embedded: T; /** * Links */ _links: object; /** * Pages */ page: Pagination; }