UNPKG

@elsikora/nestjs-crud-automator

Version:

A library for automating the creation of CRUD operations in NestJS.

6 lines (5 loc) 277 B
import { CallHandler, ExecutionContext, NestInterceptor } from '@nestjs/common'; import { Observable } from 'rxjs'; export declare class ApiRouteRuntimeInterceptor implements NestInterceptor { intercept(context: ExecutionContext, next: CallHandler): Observable<unknown>; }