package.dist.src.config.middleware.cache-request-logging.d.ts Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdk Show documentation
Show all versions of sdk Show documentation
Client SDK for Momento services
The newest version!
export declare function convertSingleKeyRequest(requestType: string, key: Uint8Array): RequestSingleKeyLog;
export interface RequestLog {
requestType: string;
}
interface RequestSingleKeyLog extends RequestLog {
key: string;
}
interface RequestToLogInterfaceConverterFn {
(request: TRequest): TLog;
}
export declare const CacheRequestToLogInterfaceConverter: Map>;
export {};