lit-analyzer
Version:
CLI that type checks bindings in lit-html templates
12 lines • 387 B
TypeScript
import { RuleModule } from "../analyze/types/rule/rule-module.js";
/**
* This rule validates that bindings are not followed by certain characters that indicate typos.
*
* Examples:
* <input value=${val}' />
* <input value='${val}'' />
* <input value=${val}} />
*/
declare const rule: RuleModule;
export default rule;
//# sourceMappingURL=no-unintended-mixed-binding.d.ts.map