@leda-mint-io/candymachine-client-sdk
Version:
Metaplex Candy Machine Client SDK
9 lines (8 loc) • 368 B
TypeScript
import { ICache } from './interfaces';
/**
* Save the cache to the cache path.
* @param cacheName The name of the cache to save.
* @param env The environment used 'mainnet-beta' | 'devnet' | 'testnet'
* @param cacheContent The content of the cache to save.
*/
export declare function saveCache(cacheName: string, env: string, cacheContent: ICache): void;