UNPKG

@golemio/parkings

Version:
12 lines (11 loc) 631 B
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>; }