Open
Description
Bug Report
🔎 Search Terms
noUnusedParameters @interface
🕗 Version & Regression Information
Playground link with relevant code
💻 Code
/** @interface */
class FooInterface {
/** @param {string} id */
doSomething(id) {}
}
🙁 Actual behavior
Throws the following error
'id' is declared but its value is never read.
🙂 Expected behavior
There should be no error thrown, as this is the correct (and only?) way to declare interfaces with JSDoc in JavaScript files (and also with Closure Compiler)