export type Editor = 'antigravity' | 'appcode' | 'atom' | 'kiro' | 'atom-beta' | 'brackets' | 'code' | 'code-insiders' | 'codebuddy' | 'codium' | 'comate' | 'cursor' | 'colin' | 'devin' | 'emacs' | 'goland' | 'hbuilder' | 'idea' | 'notepad' | 'phpstorm' | 'pycharm' | 'qoder' | 'trae' | 'rider' | 'rubymine' | 'sublime' | 'vim' | 'webstorm' | 'windsurf' | 'zed'; export type Platform = 'darwin' | 'linux' | 'win32'; export type EDITOR_PROCESS_MAP = { [key in Editor]?: string[]; }; export type IDEOpenMethod = 'reuse' | 'new' | 'auto'; export type LaunchType = 'exec' | 'open' | 'open-bg';