Files
maps-saas/apps/api/dist/geocoding/index-refresh.service.d.ts
T

9 lines
299 B
TypeScript

import { Repository } from 'typeorm';
import { OsmPointWithArea } from './entities/osm-point-with-area.entity';
export declare class IndexRefreshService {
private readonly repo;
private readonly logger;
constructor(repo: Repository<OsmPointWithArea>);
handleCron(): Promise<void>;
}