소스 검색

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";
+}