UNPKG

lit-analyzer

Version:

CLI that type checks bindings in lit-html templates

10 lines 308 B
import { SourceFileRange } from "../range.js"; import { RuleFix } from "./rule-fix.js"; export interface RuleDiagnostic { location: SourceFileRange; message: string; fixMessage?: string; suggestion?: string; fix?: () => RuleFix[] | RuleFix; } //# sourceMappingURL=rule-diagnostic.d.ts.map