UNPKG

eslint-plugin-htm

Version:

An incredible ESLint plugin for HTML based on HTMLHint

11 lines (10 loc) 446 B
import type { TSESLint, TSESTree } from '@typescript-eslint/utils'; export declare const meta: { name: string; version: string; }; export interface HtmlParserOptions extends TSESLint.Linter.ParserOptions { filePath?: string; } export declare const parseForESLint: (text: string, _options?: HtmlParserOptions) => TSESLint.Parser.ParseResult; export declare const parse: (text: string, options?: HtmlParserOptions) => TSESTree.Program;