UNPKG

@xivapi/angular-client

Version:

xivapi client library (service and models) for angular applications

15 lines (14 loc) 318 B
import { Pagination } from './pagination'; /** * Model for data list when you call and endpoint without an id. */ export interface XivapiList<T> { /** * List of the results you're getting. */ Results: T[]; /** * Pagination informations. */ Pagination: Pagination; }