Rocky_Mountain_Vending/.pnpm-store/v10/files/dd/b65bc739d39006742def51a5a884da06891b64da81e07ba0c884d7e31e6961e4ec6d69949ebf787e328e78cef9a398b49b816c6fc0ac59fc3c5a405d9680f7
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
320 B
Text

import { Identity, IdentityProvider } from "../identity/identity";
/**
* @internal
*/
export interface TokenIdentity extends Identity {
/**
* The literal token string
*/
readonly token: string;
}
/**
* @internal
*/
export type TokenIdentityProvider = IdentityProvider<TokenIdentity>;