Closed daffl closed 1 year ago
This pull request tightens up the handling of service options and makes sure the methods option only allows valid service method names
methods
app.use('myservice', new MyService(), { methods: ['get', 'finds'] // Will type error if `finds` does not exist })
This pull request tightens up the handling of service options and makes sure the
methods
option only allows valid service method names