caverav / auditforge

Detected the declaration of empty interfaces JS-0322
Anti-pattern
Minor
11 days ago11 days old
An interface declaring no members is equivalent to its supertype
 2
 3import { cn } from "@/lib/utils"
 4
 5export interface InputProps 6  extends React.InputHTMLAttributes<HTMLInputElement> {}
 7
 8const Input = React.forwardRef<HTMLInputElement, InputProps>(