/** * Flags timer leaks in class bodies: unstored `setInterval` (can't be * cleared), a local handle never cleared or handed off, and stored * `setInterval`/`setTimeout` handles never passed to a matching * `clearInterval`/`clearTimeout`. */ import type { Rule } from 'eslint'; declare const rule: Rule.RuleModule; export default rule;