I have this import:
import { post } from '@loopback/rest'
and this is how I use it:
export class MyClass {
@post('/example/test', {})
}
But I'm getting a lint error: 'post' is defined but never used
, how can I fix this without updating my codebase, is there a lint comment for this?