9 lines
299 B
TypeScript
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>;
|
|
}
|