null
The key to get.
type MyType = { a: number; b: string;}const value = await redis.get<MyType>("key");if (!value) { // key doesn't exist} else { // value is of type MyType}