UNPKG

ecmarkup

Version:

Custom element definitions and core utilities for markup that specifies ECMAScript and related technologies.

8 lines (7 loc) 172 B
export type Reporter = (lintingError: LintingError) => void; export type LintingError = { ruleId: string; message: string; line: number; column: number; };