quadre-git
Version:
Integration of Git into Quadre
32 lines (30 loc) • 2.14 kB
text/typescript
/* global brackets */
export const platform = brackets.platform;
export const _ = brackets.getModule("thirdparty/lodash");
export const AppInit = brackets.getModule("utils/AppInit");
export const CodeInspection = brackets.getModule("language/CodeInspection");
export const CommandManager = brackets.getModule("command/CommandManager");
export const Commands = brackets.getModule("command/Commands");
export const DefaultDialogs = brackets.getModule("widgets/DefaultDialogs");
export const Dialogs = brackets.getModule("widgets/Dialogs");
export const DocumentManager = brackets.getModule("document/DocumentManager");
export const EditorManager = brackets.getModule("editor/EditorManager");
export const ExtensionManager = brackets.getModule("extensibility/ExtensionManager");
export const ExtensionUtils = brackets.getModule("utils/ExtensionUtils");
export const FileSyncManager = brackets.getModule("project/FileSyncManager");
export const FileSystem = brackets.getModule("filesystem/FileSystem");
export const FileUtils = brackets.getModule("file/FileUtils");
export const FileViewController = brackets.getModule("project/FileViewController");
export const FindInFiles = brackets.getModule("search/FindInFiles");
export const KeyBindingManager = brackets.getModule("command/KeyBindingManager");
export const LanguageManager = brackets.getModule("language/LanguageManager");
export const MainViewManager = brackets.getModule("view/MainViewManager");
export const Menus = brackets.getModule("command/Menus");
export const Mustache = brackets.getModule("thirdparty/mustache/mustache");
export const NativeApp = brackets.getModule("utils/NativeApp");
export const NodeConnection = brackets.getModule("utils/NodeConnection");
export const PopUpManager = brackets.getModule("widgets/PopUpManager");
export const PreferencesManager = brackets.getModule("preferences/PreferencesManager");
export const ProjectManager = brackets.getModule("project/ProjectManager");
export const StringUtils = brackets.getModule("utils/StringUtils");
export const WorkspaceManager = brackets.getModule("view/WorkspaceManager");