@golemio/parkings
Version:
Golemio Parkings Module
12 lines (11 loc) • 631 B
TypeScript
import { ParkingsLocationRepository } from "../../repositories/ParkingsLocationRepository";
import { ISimpleConfig } from "@golemio/core/dist/helpers/configuration/ISimpleConfig";
import { AbstractEmptyTask } from "@golemio/core/dist/integration-engine";
export declare class UpdateMissingParkingsLocationAddressesTask extends AbstractEmptyTask {
private config;
private parkinglocationRepository;
readonly queueName = "updateMissingParkingsLocationAddresses";
readonly queueTtl: number;
constructor(config: ISimpleConfig, parkinglocationRepository: ParkingsLocationRepository);
execute(): Promise<void>;
}