1 | import { JwtPayload } from 'jsonwebtoken';
|
2 | import { Cache, IsolationStrategy } from '../cache';
|
3 | import { Destination } from './destination-service-types';
|
4 | export declare const destinationServiceCache: {
|
5 | retrieveDestinationsFromCache: (targetUrl: string, decodedJwt: JwtPayload, isolationStrategy?: IsolationStrategy | undefined) => Destination[] | undefined;
|
6 | cacheRetrievedDestinations: (destinationServiceUri: string, decodedJwt: JwtPayload, destinations: Destination[], isolationStrategy?: IsolationStrategy | undefined) => void;
|
7 | clear: () => void;
|
8 | getCacheInstance: () => Cache<Destination[]>;
|
9 | };
|
10 |
|
\ | No newline at end of file |