diff options
| author | Shulhan <ms@kilabit.info> | 2021-08-29 20:48:46 +0700 |
|---|---|---|
| committer | Shulhan <ms@kilabit.info> | 2021-08-29 20:48:46 +0700 |
| commit | 913062121c097ed3cc11f82fe0a388ab5f4271ee (patch) | |
| tree | 221fbccc354a45d3c95632b2d6febe6fc78d34e5 | |
| parent | aa916730514fd4f0e3ef5decabb124b10ed4ad5b (diff) | |
| download | pakakeh.ts-913062121c097ed3cc11f82fe0a388ab5f4271ee.tar.xz | |
editor: remove unused import WuiResponseInterface
| -rw-r--r-- | editor/editor.ts | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/editor/editor.ts b/editor/editor.ts index 75be1dd..fe73050 100644 --- a/editor/editor.ts +++ b/editor/editor.ts @@ -2,14 +2,13 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. +import { WuiVfsNodeInterface } from "../vfs/vfs" + const WUI_EDITOR_CLASS = "wui_editor" const WUI_EDITOR_CLASS_LINE = "wui_editor_line" const WUI_EDITOR_CLASS_LINE_NUMBER = "wui_editor_line_number" const WUI_EDITOR_CLASS_LINE_TEXT = "wui_editor_line_text" -import { WuiResponseInterface } from "../response" -import { WuiVfsNodeInterface } from "../vfs/vfs" - export interface WuiEditorOptions { id: string is_editable: boolean |
