Aykut Saraç 3 年 前
コミット
909ec06c17
1 ファイル変更7 行追加0 行削除
  1. 7 0
      src/typings/global.ts

+ 7 - 0
src/typings/global.ts

@@ -0,0 +1,7 @@
+export type Layout = "TB" | "BT" | "LR" | "RL";
+
+export interface StorageConfig {
+    layout: Layout;
+    minimap: boolean;
+    controls: boolean;
+  }