Rocky_Mountain_Vending/.pnpm-store/v10/files/20/73ea3be43d23a12fd69902ef04118330c0961171e64670f58c74e58e4435f622faac58a1ed3a82ccc00fd9191ade94f23448373e84567a5df1d06949901ac3
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

16 lines
582 B
Text

import { S3ExpressIdentity } from "../interfaces/S3ExpressIdentity";
/**
* @internal
*/
export declare class S3ExpressIdentityCacheEntry {
private _identity;
isRefreshing: boolean;
accessed: number;
/**
* @param identity - stored identity.
* @param accessed - timestamp of last access in epoch ms.
* @param isRefreshing - this key is currently in the process of being refreshed (background).
*/
constructor(_identity: Promise<S3ExpressIdentity>, isRefreshing?: boolean, accessed?: number);
get identity(): Promise<S3ExpressIdentity>;
}