sgnm-neo4j-excel
Version:
neo4j excel module for nestJs
9 lines (8 loc) • 413 B
TypeScript
import { NestInterceptor, ExecutionContext, CallHandler } from "@nestjs/common";
import { Neo4jExcelService } from "../neo4j.service";
import { Observable } from "rxjs";
export declare class Neo4jTransactionInterceptor implements NestInterceptor {
private readonly neo4jService;
constructor(neo4jService: Neo4jExcelService);
intercept(context: ExecutionContext, next: CallHandler): Observable<any>;
}