Rocky_Mountain_Vending/.pnpm-store/v10/files/9e/9b65c5a9316a875ce53dcc81e1b0e7dc87b0ac355dbc5ae3860714cece6f53183acbcfece208b7763e816cee8cd65a78bf5c9ef66df7ddbf4dd4b43af4931c
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

17 lines
370 B
Text

import { TokenIdentity } from "./identity";
import { Provider } from "./util";
/**
* @public
*
* An object representing temporary or permanent AWS token.
*
* @deprecated Use {@link TokenIdentity}
*/
export interface Token extends TokenIdentity {
}
/**
* @public
*
* @deprecated Use {@link TokenIdentityProvider}
*/
export type TokenProvider = Provider<Token>;