You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The RedisClientType type appears to be missing the on method. This causes a type-checking error when using .on to handle events. Below is an example that triggers the error:
import{createClient}from"redis";constredis=createClient().on("error",(err)=>{});// ~~ Property 'on' does not exist on type 'RedisClientType...