Describe the bug
When a NodeCache instance is typed the return type is Record<string, unknown> instead of my specified type.
My assumption is that the generics on the functions were forgotton to remove when writing this in TS - the <T> is already on the class so its not needed on the function.

Describe the bug
When a
NodeCacheinstance is typed the return type isRecord<string, unknown>instead of my specified type.My assumption is that the generics on the functions were forgotton to remove when writing this in TS - the
<T>is already on the class so its not needed on the function.