UNPKG

@golemio/pid

Version:
13 lines (12 loc) 382 B
import { IDepartureWithPosition } from "./IDepartureWithPosition"; import { IStop } from "./IStop"; export interface IV4TransferDto { transfers: IDepartureWithPosition[]; delayedTimeFrom: Date; plannedTimeFrom: Date; currentStop: ICurrentStop | null; currentTripId: string | null; } export interface ICurrentStop extends IStop { stop_icons: string | null; }