Pārlūkot izejas kodu

Actualizar tipos

wilitp 4 gadi atpakaļ
vecāks
revīzija
1d69159475
2 mainītis faili ar 7 papildinājumiem un 0 dzēšanām
  1. 2 0
      app/src/types/index.ts
  2. 5 0
      app/src/types/station.ts

+ 2 - 0
app/src/types/index.ts

@@ -0,0 +1,2 @@
+export * from "./station";
+export * from "./summary";

+ 5 - 0
app/src/types/station.ts

@@ -0,0 +1,5 @@
+export interface Station {
+  title: string;
+  station_code: string;
+  last_synced: "string";
+}