@lxdhub/api
Version:
Display, search and copy LXD-images using a web interface.
16 lines (15 loc) • 432 B
TypeScript
import { RemoteService } from './remote.service';
import { ResponseDto } from '../common';
import { RemoteDto } from './dtos';
/**
* The Remote-Controller, which is the API
* interface for Remote-Operations.
*/
export declare class RemoteController {
private readonly remoteService;
constructor(remoteService: RemoteService);
/**
* Returns all remotes
*/
findAll(): Promise<ResponseDto<RemoteDto[]>>;
}