UNPKG

@html-eslint/eslint-plugin

Version:
18 lines (15 loc) 369 B
import eslint from "eslint"; /** * This is not a node generated by es-html-parser; it is created by utils's splitToLineNodes. */ export interface Line extends BaseNode { type: "Line"; value: string; hasTemplate: boolean; } export interface BaseNode { parent?: BaseNode | null; type: string; range: eslint.AST.Range; loc: eslint.AST.SourceLocation; }