@lxdhub/api
Version:
Display, search and copy LXD-images using a web interface.
17 lines (16 loc) • 396 B
TypeScript
/**
* The response wrapper around the requested
* data, which will be used as response,
* when requesting a paginated list.
*/
export declare class ResponseDto<ItemType> {
/**
* Creates a new instance of a response.
* @param results The results of the query
*/
constructor(results: ItemType);
/**
* The requested data
*/
readonly results: ItemType;
}