@bhsd/codemirror-mediawiki 2.14.4 → 2.14.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -19,6 +19,12 @@ declare class Tag {
19
19
  get to(): number;
20
20
  constructor(type: TagType, name: string, first: SyntaxNode, last: SyntaxNode);
21
21
  }
22
+ /**
23
+ * 获取标签信息
24
+ * @param state
25
+ * @param node 语法树节点
26
+ */
27
+ export declare const getTag: (state: EditorState, node: SyntaxNode) => Tag;
22
28
  /**
23
29
  * 匹配标签
24
30
  * @param state
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @author pastakhov, MusikAnimal and others
2
+ * @author MusikAnimal, Bhsd and others
3
3
  * @license GPL-2.0-or-later
4
4
  * @see https://gerrit.wikimedia.org/g/mediawiki/extensions/CodeMirror
5
5
  */