@haku-sci/utils
Version:
utils from haku-sci. Library only
9 lines (8 loc) • 376 B
TypeScript
import { NestInterceptor, ExecutionContext, CallHandler } from '@nestjs/common';
import { Observable } from 'rxjs';
import { Reflector } from '@nestjs/core';
export declare class RestrictSenderInterceptor implements NestInterceptor {
private reflector;
constructor(reflector: Reflector);
intercept(context: ExecutionContext, next: CallHandler): Observable<any>;
}