@golemio/parkings
Version:
Golemio Parkings Module
8 lines (7 loc) • 434 B
TypeScript
import { IBusinessError } from "../../schema-definitions/models/interfaces/IBusinessError";
import { IModel } from "@golemio/core/dist/integration-engine/models/IModel";
import { PostgresModel } from "@golemio/core/dist/integration-engine/models/PostgresModel";
export declare class ParkingsBusinessErrorsRepository extends PostgresModel implements IModel {
constructor();
save: (errors: IBusinessError[]) => Promise<void>;
}