UNPKG

@lxdhub/api

Version:

Display, search and copy LXD-images using a web interface.

16 lines (15 loc) 303 B
/** * This interface represents * options for iterating through * paginated lists. */ export declare class PaginationOptionsDto { /** * The maximum amount of items to request. */ readonly limit: number; /** * The offset of the items */ readonly offset: number; }