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>
17 lines
370 B
Text
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>;
|