Rocky_Mountain_Vending/.pnpm-store/v10/files/d4/958521a170b458d25369f0e9ea8771e4bccff215b052d0ee5be7e81d704bee1e9e79e1d6aeb078e59db87a613345282dd44859ccd0329f817c89a804118631
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

15 lines
326 B
Text

/**
* @public
*/
export interface Identity {
/**
* A `Date` when the identity or credential will no longer be accepted.
*/
readonly expiration?: Date;
}
/**
* @public
*/
export interface IdentityProvider<IdentityT extends Identity> {
(identityProperties?: Record<string, any>): Promise<IdentityT>;
}