@golemio/pid
Version:
Golemio PID Module
9 lines (8 loc) • 334 B
TypeScript
import type { IInfotextDepartureOutputDto } from "./InfotextInterfaces";
import type { IPIDDeparture } from "../interfaces/IPIDDeparture";
import type { IStop } from "../interfaces/IStop";
export interface IDepartureBoardOutputDto {
departures: IPIDDeparture[];
infotexts: IInfotextDepartureOutputDto[];
stops: IStop[];
}