Implement IDisposable on IRedisTypedClient<T>

As the title, IRedisTypedClient does not implement IDisposable, while IRedisClient does. Is it possible to implement?

Thanks

RedisClient wraps a Redis connection whilst IRedisTypedClient doesn’t have its own connection, it uses the same connection as the RedisClient it was created from so it doesn’t have any resources that need disposing and only the original client should dispose of its connection.