UNPKG

@quick-game/cli

Version:

Command line interface for rapid qg development

32 lines 1.4 kB
// Copyright 2019 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. // @ts-nocheck import * as WorkspaceModule from './workspace.js'; self.Workspace = self.Workspace || {}; Workspace = Workspace || {}; /** @constructor */ Workspace.FileManager = WorkspaceModule.FileManager.FileManager; /** @constructor */ Workspace.UISourceCode = WorkspaceModule.UISourceCode.UISourceCode; /** @enum {symbol} */ Workspace.UISourceCode.Events = WorkspaceModule.UISourceCode.Events; /** @constructor */ Workspace.UISourceCode.Message = WorkspaceModule.UISourceCode.Message; /** @enum {string} */ Workspace.UISourceCode.Message.Level = WorkspaceModule.UISourceCode.Message.Level; /** @constructor */ Workspace.UILocation = WorkspaceModule.UISourceCode.UILocation; /** @constructor */ Workspace.UISourceCodeMetadata = WorkspaceModule.UISourceCode.UISourceCodeMetadata; /** @constructor */ Workspace.Workspace = WorkspaceModule.Workspace.WorkspaceImpl; /** @enum {symbol} */ Workspace.Workspace.Events = WorkspaceModule.Workspace.Events; /** @interface */ Workspace.Project = WorkspaceModule.Workspace.Project; /** @enum {string} */ Workspace.projectTypes = WorkspaceModule.Workspace.projectTypes; /** @constructor */ Workspace.ProjectStore = WorkspaceModule.Workspace.ProjectStore; //# sourceMappingURL=workspace-legacy.js.map