]> BookStack Code Mirror - bookstack/blobdiff - resources/js/wysiwyg/nodes/custom-table.ts
Lexical: Started on table actions
[bookstack] / resources / js / wysiwyg / nodes / custom-table.ts
index 1107f0a906b5faad7bb28a02909c41935777a2c7..7dda24a7a30da71c0008f1d378257791798e4a1a 100644 (file)
@@ -157,7 +157,7 @@ export function $createCustomTableNode(): CustomTableNode {
     return new CustomTableNode();
 }
 
-export function $isCustomTableNode(node: LexicalNode | null | undefined): boolean {
+export function $isCustomTableNode(node: LexicalNode | null | undefined): node is CustomTableNode {
     return node instanceof CustomTableNode;
 }