UNPKG

echadospalante-domain

Version:

This package contains the core of the echadospalante project, it contains the domain entities, helpers, and other utilities that are shared between the different services.

10 lines (8 loc) 134 B
export interface Pagination { skip: number; take: number; } export interface PaginatedBody<I> { total: number; items: I[]; }