1 | import { Cache } from './cache';
|
2 | import { ClientCredentials, ClientCredentialsResponse } from './xsuaa-service-types';
|
3 | export declare function getGrantTokenCacheKey(url: string, credentialsOrClientId: ClientCredentials | string): string;
|
4 | export declare const clientCredentialsTokenCache: {
|
5 | getGrantTokenFromCache: (url: any, credentialsOrClientId: ClientCredentials | string) => ClientCredentialsResponse | undefined;
|
6 | cacheRetrievedToken: (url: any, credentialsOrClientId: ClientCredentials | string, token: ClientCredentialsResponse) => void;
|
7 | clear: () => void;
|
8 | getCacheInstance: () => Cache<ClientCredentialsResponse>;
|
9 | };
|
10 |
|
\ | No newline at end of file |