czydojade/resources/ts/model/trip.ts

17 lines
293 B
TypeScript

import { Stop } from "./stop";
import { Moment } from "moment";
export type ScheduledStop = {
stop: Stop,
departure: Moment,
arrival: Moment,
order: number,
}
export type Trip = {
id: string,
schedule: ScheduledStop[],
variant: string,
description: string,
}