Rocky_Mountain_Vending/.pnpm-store/v10/files/05/7cc103ac418c153eb45231ef21dad194bd5936a2e315ac2a78d852520aa64c21700516d5f5312617f84bc8021f23e41713d5a69c497a89be4faf1c2fac07f2
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
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>
2026-02-12 16:22:15 -07:00

14 lines
508 B
Text

import { S3ExpressIdentityCacheEntry } from "./S3ExpressIdentityCacheEntry";
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>;
}