@bhsd/codemirror-mediawiki 2.23.1 → 2.24.0

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.
@@ -3,7 +3,7 @@ import type { KeyBinding } from '@codemirror/view';
3
3
  import type { Extension, Text } from '@codemirror/state';
4
4
  import type { SyntaxNode } from '@lezer/common';
5
5
  import type { Diagnostic } from '@codemirror/lint';
6
- import type { Config } from 'wikiparser-node';
6
+ import type { ConfigData } from 'wikiparser-node';
7
7
  import type { MwConfig } from './token';
8
8
  import type { DocRange } from './fold';
9
9
  import type { Option, LiveOption } from './linter';
@@ -101,5 +101,5 @@ export declare class CodeMirror6 {
101
101
  * 将wikiparser-node设置转换为codemirror-mediawiki设置
102
102
  * @param config
103
103
  */
104
- static getMwConfig(config: Config): MwConfig;
104
+ static getMwConfig(config: ConfigData): MwConfig;
105
105
  }