/** * Copyright (c) Microsoft Corporation. All rights reserved. */ /** * IClientCachableResponse represents the response to be used by Client Callable HTTPRequests * when allowing caching of the response. * * @internal */ export interface IClientCachableResponse { /** * If defined, cachedResponse will contain a Promise returning the Cached Response Data available for this requests */ cachedResponse: Promise | undefined; /** * If defined, serverResponse will contain a Promise returning the Server response for this request */ serverResponse: Promise | undefined; } //# sourceMappingURL=IClientCachableResponse.d.ts.map