@lxdhub/api
Version:
Display, search and copy LXD-images using a web interface.
19 lines (18 loc) • 406 B
TypeScript
import { HttpStatus } from '@nestjs/common';
import { LogService } from '.';
import { LogDto } from './dtos';
/**
* The Remote-Controller, which is the API
* interface for Remote-Operations.
*/
export declare class LogController {
logger: LogService;
/**
* Initializes the controller
*/
constructor();
/**
* Returns all remotes
*/
log(log: LogDto): HttpStatus;
}