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