aboutsummaryrefslogtreecommitdiff
path: root/editor/editor.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'editor/editor.d.ts')
-rw-r--r--editor/editor.d.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/editor.d.ts b/editor/editor.d.ts
index 2c716ee..2784506 100644
--- a/editor/editor.d.ts
+++ b/editor/editor.d.ts
@@ -1,8 +1,8 @@
-import { WuiVfsResponseInterface } from "../vfs/vfs";
+import { WuiResponseInterface } from "../response";
export interface WuiEditorOptions {
id: string;
is_editable: boolean;
- OpenFile(path: string): WuiVfsResponseInterface;
+ OpenFile(path: string): WuiResponseInterface;
OnSelection(begin: number, end: number): void;
OnSave(content: string): void;
}