wikilint 2.7.0 → 2.7.1
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.
- package/dist/index.d.ts +1 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -16,6 +16,7 @@ declare interface Parser extends ParserBase {
|
|
|
16
16
|
parse(wikitext: string, include?: boolean, maxStage?: number, config?: Config): Token;
|
|
17
17
|
}
|
|
18
18
|
declare const Parser: Parser;
|
|
19
|
+
// @ts-expect-error mixed export styles
|
|
19
20
|
export = Parser;
|
|
20
21
|
export type { Config, LintError };
|
|
21
22
|
export type * from './internal';
|