package.dist.src.config.auth-client-configuration.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!
import { MomentoLoggerFactory } from '@gomomento/sdk-core';
export interface AuthClientConfigurationProps {
/**
* Configures logging verbosity and format
*/
loggerFactory: MomentoLoggerFactory;
}
/**
* Configuration options for Momento CacheClient.
*
* @export
* @interface Configuration
*/
export interface AuthConfiguration {
/**
* @returns {MomentoLoggerFactory} the current configuration options for logging verbosity and format
*/
getLoggerFactory(): MomentoLoggerFactory;
}
export declare class AuthClientConfiguration implements AuthConfiguration {
private readonly loggerFactory;
constructor(props: AuthClientConfigurationProps);
getLoggerFactory(): MomentoLoggerFactory;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy