File tree Expand file tree Collapse file tree 3 files changed +17
-5
lines changed Expand file tree Collapse file tree 3 files changed +17
-5
lines changed Original file line number Diff line number Diff line change @@ -135,3 +135,4 @@ recommendedPlugins.markdown = processorPlugins.markdown = plugin;
135135
136136export default plugin ;
137137export { MarkdownSourceCode } ;
138+ export * from "./types.js" ;
Original file line number Diff line number Diff line change 1+ /**
2+ * @fileoverview Dummy file to enable exporting types from the main module.
3+ * @author 루밀LuMir(lumirlumir)
4+ */
5+
6+ //-----------------------------------------------------------------------------
7+ // Exports
8+ //-----------------------------------------------------------------------------
9+
10+ export default { } ;
Original file line number Diff line number Diff line change 1- import markdown , { MarkdownSourceCode } from "@eslint/markdown" ;
2- import type { SourceLocation , SourceRange } from "@eslint/core" ;
1+ import markdown from "@eslint/markdown" ;
32import type {
43 MarkdownRuleDefinition ,
54 MarkdownRuleVisitor ,
5+ MarkdownSourceCode ,
66 Toml ,
77 Json ,
88 RangeMap ,
99 Block ,
10- } from "@eslint/markdown/types" ;
11- import { ESLint , Linter } from "eslint" ;
12- import { Position } from "unist" ;
10+ } from "@eslint/markdown" ;
11+ import type { SourceLocation , SourceRange } from "@eslint/core" ;
12+ import type { ESLint , Linter } from "eslint" ;
13+ import type { Position } from "unist" ;
1314import type {
1415 // Nodes (abstract)
1516 Node ,
You can’t perform that action at this time.
0 commit comments