17 lines
408 B
TypeScript
17 lines
408 B
TypeScript
export interface MetroStation {
|
|
id: number;
|
|
name: string;
|
|
status: 'completed' | 'in-progress' | 'planned';
|
|
progress: number;
|
|
startDate: string;
|
|
expectedCompletion: string;
|
|
actualCompletion?: string;
|
|
connections?: string[];
|
|
features: string[];
|
|
dailyCapacity: string;
|
|
image?: string;
|
|
}
|
|
|
|
// Mock data removed - all data comes from database
|
|
export const metroStations: MetroStation[] = [];
|