path修正

This commit is contained in:
harukin-expo-dev-env
2025-09-12 19:05:18 +00:00
parent 7bea2ac454
commit 50b2cbb21c
13 changed files with 284 additions and 360 deletions

View File

@@ -35,4 +35,24 @@ export type CustomTrainData = {
isSeason?: boolean;
vehicleFormation?: string;
trainInfoUrl?: string;
};
export type eachTrainDiagramType = {
train: string;
time: string;
lastStation: string;
isThrough: boolean;
};
export type StationProps = {
DispNum: string;
JrHpUrl?: string;
MyStation: string;
StationMap: string;
StationNumber: string | null;
StationTimeTable: string;
Station_EN: string;
Station_JP: string;
jslodApi: string;
lat: number;
lng: number;
};