@apolitical/component-library 8.11.2-oa.2 → 8.11.3-lrn-102

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.
@@ -26,12 +26,6 @@ export declare function addItem<ICacheItem extends ICacheItemBase>(item: ICacheI
26
26
  pageParams: string[];
27
27
  };
28
28
  export declare function findItem<ICacheItem extends ICacheItemBase>(itemId: string, cache?: ICache<ICacheItem>): ICacheItem | undefined;
29
- export declare function removeItem<ICacheItem extends ICacheItemBase>(itemId: string, cache: ICache<ICacheItem>): {
30
- pages: {
31
- results: ICacheItem[];
32
- next: string;
33
- }[];
34
- pageParams: string[];
35
- };
29
+ export declare function removeItem<ICacheItem extends ICacheItemBase>(itemId: string, cache: ICache<ICacheItem>): ICache<ICacheItem>;
36
30
  export declare function flattenCache<ICacheItem extends ICacheItemBase>(cache?: ICache<ICacheItem>): ICacheItem[];
37
31
  export {};