UNPKG

@lxdhub/api

Version:

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

19 lines (18 loc) 512 B
import { PaginationResponseDto } from '@lxdhub/interfaces'; export declare type ImageListItemResponse = PaginationResponseDto<ImageListItemDto[]>; /** * The data transfer object, * which represents a "not detailed" * image item. This class is used for * larger image lists, which do not require * any detailed data of an image. */ export declare class ImageListItemDto { id: number; fingerprint: string; uploadedAt: Date; description: string; _links: { detail: string; }; }