Rocky_Mountain_Vending/.pnpm-store/v10/files/00/b6299f932da6b4bf8006fd1fd72770b26b0c91ccc59459e6e27740c8070967270f4b78758436bfe5fefbc61584c489874ca38c683eab373c400a9d8af77275
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

13 lines
580 B
Text

import { Provider } from "@smithy/types";
/**
* @internal
*
* Compose a single credential provider function from multiple credential
* providers. The first provider in the argument list will always be invoked;
* subsequent providers in the list will be invoked in the order in which the
* were received if the preceding provider did not successfully resolve.
*
* If no providers were received or no provider resolves successfully, the
* returned promise will be rejected.
*/
export declare const chain: <T>(...providers: Array<Provider<T>>) => Provider<T>;