```js const FooController = require('xyz'); // and below constructor() { super(stuff); /** @private @const {!FooController} */ this.FooController = abc; } ``` I’m getting the error `eslint(no-unused-vars)`, how would I show the linter it’s being used?