@lxdhub/api
Version:
Display, search and copy LXD-images using a web interface.
17 lines (16 loc) • 548 B
TypeScript
import { ExecutionContext, NestInterceptor, CallHandler } from '@nestjs/common';
import { Observable } from 'rxjs';
export declare class RequestLoggerInterceptor implements NestInterceptor {
private logger;
/**
* Inititalizes the RequestLoggerInterceptor
* and its logger
*/
constructor();
/**
* Intercepts every request and logs it
* @param context The execution context
* @param call$ The stream to for callback
*/
intercept(context: ExecutionContext, next: CallHandler): Observable<any>;
}