import { Geoname } from './geonames.entity'; export interface WorkDirectory { path: string; remove(): Promise; } export type GeonameQuery = Record & { fields?: (keyof Geoname)[]; limit?: string; offset?: string; q?: string; };