fixed constants.ts filename casing issue. Updated tsconfig and rollout.config

This commit is contained in:
zsviczian
2023-08-26 11:02:00 +02:00
parent f79181c76a
commit e1fe3eeaab
35 changed files with 63 additions and 55 deletions

View File

@@ -1,4 +1,4 @@
import { DEVICE, isDarwin } from "src/Constants";
import { DEVICE, isDarwin } from "src/constants";
export type ModifierKeys = {shiftKey:boolean, ctrlKey: boolean, metaKey: boolean, altKey: boolean};
export type KeyEvent = PointerEvent | MouseEvent | KeyboardEvent | React.DragEvent | React.PointerEvent | React.MouseEvent | ModifierKeys;
export type PaneTarget = "active-pane"|"new-pane"|"popout-window"|"new-tab"|"md-properties";