@golemio/pid
Version:
Golemio PID Module
14 lines (13 loc) • 712 B
TypeScript
import { IInfotextDepartureInputDto, IInfotextDepartureOutputDto } from "../../domain/InfotextInterfaces";
import { AbstractTransformation } from "@golemio/core/dist/helpers/transformation/AbstractTransformation";
export declare class JISInfotextDepartureTransformation extends AbstractTransformation<IInfotextDepartureInputDto, IInfotextDepartureOutputDto> {
name: string;
protected transformInternal: ({ data, timeZone }: IInfotextDepartureInputDto) => {
display_type: import("../../domain/InfotextDisplayTypeEnum").InfotextDisplayType;
text: string;
text_en: string | null;
related_stops: string[];
valid_from: string;
valid_to: string | null;
};
}