ngx-cacheable
Advanced tools
Comparing version 1.2.1-beta.1 to 1.2.1-beta.2
import { IStorageStrategy } from './IStorageStrategy'; | ||
import { Observable } from 'rxjs'; | ||
import { ICachePair } from '.'; | ||
export declare class InMemoryStorageStrategy extends IStorageStrategy { | ||
private cachePairs; | ||
add(cachePair: ICachePair<Observable<any>>): void; | ||
add(cachePair: ICachePair<any>): void; | ||
updateAtIndex(index: number, entity: ICachePair<any>): void; | ||
getAll(): ICachePair<Observable<any>>[]; | ||
getAll(): ICachePair<any>[]; | ||
removeAtIndex(index: number): void; | ||
removeAll(): void; | ||
} |
{ | ||
"name": "ngx-cacheable", | ||
"version": "1.2.1-beta.1", | ||
"version": "1.2.1-beta.2", | ||
"description": "Promise/Observable cache decorators", | ||
@@ -5,0 +5,0 @@ "main": "./index.js", |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
177464
2239