@golemio/parkings
Version:
Golemio Parkings Module
7 lines (6 loc) • 372 B
TypeScript
import { IPayment } from "../../schema-definitions/models/interfaces/IPayment";
import { IModel, PostgresModel } from "@golemio/core/dist/integration-engine";
export declare class ParkingPaymentsRepository extends PostgresModel implements IModel {
constructor();
updatePaymentsBySource(payments: IPayment[], source: string, processingDate: Date): Promise<void>;
}