@golemio/pid
Version:
Golemio PID Module
17 lines (16 loc) • 347 B
TypeScript
import { IStopDto } from "./IStopDto";
export interface IStopCisDto {
alt_idos_name: string;
cis: number;
id: string;
jtsk_x: number;
jtsk_y: number;
lat: number;
lon: number;
platform: string;
wheelchair_access: string;
zone: string;
created_at: Date;
updated_at: Date;
gtfs_stop?: IStopDto;
}