package.dist.src.preview-storage-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 { AbstractStorageClient } from '@gomomento/sdk-core/dist/src/internal/clients';
import { IStorageClient } from '@gomomento/sdk-core/dist/src/clients/IStorageClient';
import { StorageClientProps } from './storage-client-props';
/**
* A client for interacting with the Momento Storage service.
* Warning: This client is in preview and may change in future releases.
*/
export declare class PreviewStorageClient extends AbstractStorageClient implements IStorageClient {
constructor(props: StorageClientProps);
close(): void;
}