global.ts 150 B

1234567
  1. export type Layout = "TB" | "BT" | "LR" | "RL";
  2. export interface StorageConfig {
  3. layout: Layout;
  4. minimap: boolean;
  5. controls: boolean;
  6. }