package.dist.src.internal.ping-client.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 { Configuration } from '../config/configuration';
import { CredentialProvider } from '../';
export interface PingClientProps {
configuration: Configuration;
endpoint: string;
credentialProvider: CredentialProvider;
}
export declare class InternalNodeGrpcPingClient {
private readonly clientWrapper;
private readonly interceptors;
private static readonly REQUEST_TIMEOUT_MS;
private readonly logger;
/**
* @param {PingClientProps} props
*/
constructor(props: PingClientProps);
ping(): Promise;
}