import { ILogRecord } from "./log_record"; import { ITrip } from "./trip"; /** * A device trip. * * @deprecated */ export interface ITripWithLogs { /** * @inheritdoc */ from?: Date; /** Gets the . */ logs: ILogRecord[]; /** * @inheritdoc */ to?: Date; /** Gets the . */ trip: ITrip; } //# sourceMappingURL=trip_with_logs.d.ts.map