import { QuerySpecification } from '../query'; export interface ResultMapper { mapQueryResults(results: any[], spec: QuerySpecification): T[]; }