import {MtaData, MtaStartTime} from "@/services/mta-api/types"; export const fetchStationData = async (stations: [string]): Promise => { const res = await fetch("/api/mta_data", {method: "POST"}) const data = await res.json() return { mtaData: data }; }; export const fetchStartDate = async (stations: [string]): Promise => { const res = await fetch("/api/start_time", {method: "POST"}) const data = await res.text() const date = new Date(data.replaceAll("\"", "")) return { startTime: date }; };