© 2026 Hedgehog Software, LLC
const myFunction = (args: any) => Effect.flatMap(SomeDependency,(dep) => dep.method(args))
R
type MyFunction = (args: any) => Promise<'whatever'>
myFunction