@ztimson/utils 0.24.9 → 0.24.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/cache.d.ts CHANGED
@@ -8,7 +8,7 @@ export type CacheOptions = {
8
8
  /** Keep or delete cached items once expired, defaults to delete */
9
9
  expiryPolicy?: 'delete' | 'keep';
10
10
  };
11
- export type CachedValue<T> = T | {
11
+ export type CachedValue<T> = T & {
12
12
  _expired?: boolean;
13
13
  };
14
14
  /**