@golemio/pid
Version:
Golemio PID Module
10 lines (9 loc) • 559 B
TypeScript
import { RequestHandler } from "@golemio/core/dist/shared/express";
import { JISEventsRepository } from "../../data-access/JISEventsRepository";
import { JISEventsCustomFormatTransformation } from "../../transformations/JISEventsCustomFormatTransformation";
export declare class V1EventsController {
private jisEventsRepository;
private eventsCustomFormatTransformation;
constructor(jisEventsRepository: JISEventsRepository, eventsCustomFormatTransformation: JISEventsCustomFormatTransformation);
getAllEventsInCustomFormat: RequestHandler;
}