import { Application } from '@feathersjs/express'; import { Poll } from 'which-types'; export default class Profiles { app!: Application; async get(id: string): Promise { return this.app.service('polls').find({ query: { authorId: id } }); } setup(app: Application): void { this.app = app; } }