@aziontech/opennextjs-azion
Version:
Azion builder for Next.js apps
8 lines (7 loc) • 349 B
TypeScript
declare class CacheApi {
private static hostname;
static getCacheAPI(cacheStorageName: string, key: string): Promise<string | null>;
static putCacheAPIkey(cacheStorageName: string, key: string, content: string): Promise<void>;
static deleteCacheAPIkey(cacheStorageName: string, key: string): Promise<any>;
}
export default CacheApi;