@@ -0,0 +1,2 @@
+export * from "./station";
+export * from "./summary";
@@ -0,0 +1,5 @@
+export interface Station {
+ title: string;
+ station_code: string;
+ last_synced: "string";
+}