From 2905881dcf8d5ef58a4ae7e54780dd31c62f03ec Mon Sep 17 00:00:00 2001 From: Henrik Giesel Date: Tue, 9 Mar 2021 14:02:41 +0100 Subject: [PATCH] Fix another import --- ts/editor/helpers.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ts/editor/helpers.ts b/ts/editor/helpers.ts index 80a9897ce..9281af818 100644 --- a/ts/editor/helpers.ts +++ b/ts/editor/helpers.ts @@ -1,7 +1,7 @@ /* Copyright: Ankitects Pty Ltd and contributors * License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html */ -import type { EditingArea } from "."; +import type { EditingArea } from "./editingArea"; export function nodeIsElement(node: Node): node is Element { return node.nodeType === Node.ELEMENT_NODE;