Next.js website for Rocky Mountain Vending company featuring: - Product catalog with Stripe integration - Service areas and parts pages - Admin dashboard with Clerk authentication - SEO optimized pages with JSON-LD structured data Co-authored-by: Cursor <cursoragent@cursor.com>
16 lines
565 B
Text
16 lines
565 B
Text
import { S3ExpressIdentityCacheEntry } from "./S3ExpressIdentityCacheEntry";
|
|
/**
|
|
* @internal
|
|
*
|
|
* Stores identities by key.
|
|
*/
|
|
export declare class S3ExpressIdentityCache {
|
|
private data;
|
|
private lastPurgeTime;
|
|
static EXPIRED_CREDENTIAL_PURGE_INTERVAL_MS: number;
|
|
constructor(data?: Record<string, S3ExpressIdentityCacheEntry>);
|
|
get(key: string): undefined | S3ExpressIdentityCacheEntry;
|
|
set(key: string, entry: S3ExpressIdentityCacheEntry): S3ExpressIdentityCacheEntry;
|
|
delete(key: string): void;
|
|
purgeExpired(): Promise<void>;
|
|
}
|