sgnm-neo4j
Version:
neo4j module for nestJs
11 lines (10 loc) • 509 B
TypeScript
import { CallHandler, ExecutionContext, NestInterceptor } from '@nestjs/common';
import { Observable } from 'rxjs';
export declare class Neo4jTypeInterceptor implements NestInterceptor {
private showLabelsOrType;
private showIdentity;
constructor();
setOptions(showLabelsOrType?: boolean, showIdentity?: boolean): this;
static withOptions(showLabelsOrType?: boolean, showIdentity?: boolean): NestInterceptor;
intercept(context: ExecutionContext, next: CallHandler): Observable<any>;
}