Fix another import

This commit is contained in:
Henrik Giesel 2021-03-09 14:02:41 +01:00
parent 475b1968d0
commit 2905881dcf

View File

@ -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;