UNPKG

390 BTypeScriptView Raw
1import { Linter } from "eslint";
2import { Node } from "unist";
3
4export interface RangeMap {
5 js: number;
6 md: number;
7}
8
9export interface Block extends Node {
10 baseIndentText: string;
11 comments: string[];
12 rangeMap: RangeMap[];
13}
14
15export const configs: {
16 recommended: Linter.Config;
17};
18
19export const processors: {
20 markdown: Linter.Processor<Linter.ProcessorFile>;
21};