Accessing Service Functions Directly Without Yielding

hey is there a way I can directly access functions on a service without yielding the service, so

instead of
const myService = yield* MyService;
myService.someFunc()


Can I somehow do
yield* MyService.someFunc()
Was this page helpful?