Rocky_Mountain_Vending/.pnpm-store/v10/files/0f/7aa31ee506c809029e1c4c32377e1c851d22118b2ec212ba4ab371015ba01417b3ce2154e7588d8e50b0e713ab3eabf6e7b6d3f7615835fb73becb515c41f8
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

10 lines
373 B
Text

import { Credentials, Profile } from "@aws-sdk/types";
import { FromIniInit } from "./fromIni";
export interface ProcessProfile extends Profile {
credential_process: string;
}
export declare const isProcessProfile: (arg: any) => arg is ProcessProfile;
export declare const resolveProcessCredentials: (
options: FromIniInit,
profile: string
) => Promise<Credentials>;