瀏覽代碼

Actualizar tipos

wilitp 4 年之前
父節點
當前提交
1d69159475
共有 2 個文件被更改,包括 7 次插入0 次删除
  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";
+}