Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@ridit/editor-ui

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ridit/editor-ui - npm Package Compare versions

Comparing version
0.1.5
to
0.1.8
+1
-1
package.json
{
"name": "@ridit/editor-ui",
"version": "0.1.5",
"version": "0.1.8",
"description": "Your editor, in minutes.",

@@ -5,0 +5,0 @@ "license": "MIT",

@@ -0,2 +1,6 @@

import { EditorService } from "./EditorService";
import { MonacoEditorOptions } from "./EditorService/default-editors/monaco";
import { ExplorerService } from "./ExplorerService";
import { FileSystemService } from "./FileSystemService";
import { StorageService } from "./StorageService";
import { BasicTheme, WorkbenchConfig } from "./types";

@@ -24,3 +28,9 @@ import { WorkbenchService } from "./WorkbenchService";

static createElectron(opts: ElectronPresetOptions): Promise<WorkbenchService>;
static createWeb(opts?: WebPresetOptions): Promise<WorkbenchService>;
static createWeb(opts?: WebPresetOptions): Promise<{
workbenchService: WorkbenchService;
editorService: EditorService;
explorerService: ExplorerService;
fileSystem: FileSystemService;
storageService: StorageService;
}>;
}