UNPKG

@liberation-data/drivine

Version:

Best and fastest graph database client for TypeScript / Node.js. Provides a level of abstraction for building highly scalable applications, without compromising architectural integrity

7 lines (6 loc) 285 B
import { ResultPostProcessor } from './ResultPostProcessor'; export declare class FilterPostProcessor implements ResultPostProcessor { readonly filterFunction: (result: any) => boolean; constructor(filterFunction: (result: any) => boolean); apply(results: any[]): any[]; }