Is it possible to include parameter names when generating an interface using interfacer?
Currently, all the function parameter names are stripped so
FooBar(ctx context.Context, eventContext string, includePrivate bool, includeGeo bool)
becomes
FooBar(ctx, string, bool, bool)
which is much harder to work with.