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) 268 B
import { ResultPostProcessor } from './ResultPostProcessor'; export declare class MapPostProcessor implements ResultPostProcessor { readonly mapFunction: (result: any) => any; constructor(mapFunction: (result: any) => any); apply(results: any[]): any[]; }