A generic interface for holding a cached value
0.10.5
let cachedValue: ICachedValue<string> = { v: "some value"}; Copy
let cachedValue: ICachedValue<string> = { v: "some value"};
The type of the value to be cached
Returns the current cached value
A generic interface for holding a cached value
Since
0.10.5
Example