feat: issues

This commit is contained in:
Loic Coenen
2025-11-01 16:01:57 +01:00
parent a0fb254846
commit 4013ae24b2
20 changed files with 409 additions and 115 deletions

View File

@@ -1,4 +1,6 @@
import type {Station} from "../types";
import type { Article } from "../types/article";
import type {IssuesResponse} from "../types/issues";
import type { DepartureType } from "../types/liveboard";
import type { WeatherData } from "../types/weather";
@@ -14,4 +16,11 @@ export type State = {
news: Article[] | undefined,
newsLoading: boolean,
newsError: Error | undefined,
issues: IssuesResponse | undefined,
issuesLoading: boolean,
issuesError: Error | undefined,
stations: undefined | Station[],
selectedLocation: string,
}