Rocky_Mountain_Vending/.pnpm-store/v10/files/55/33713d96c6d31307d0f80fa167493067ccbda3c53df3201512a8102d4d2709b6acfd503da17e4dfb2faaf0056dff8ba17ee2334f755a3b85d3b82070e79457
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

7 lines
233 B
Text

/**
* Check to see if a value is Thenable.
*
* @param promise the maybe-thenable value
* @returns true if the value is thenable
*/
export declare function isThenable<T = unknown>(promise: Promise<T> | T): promise is Promise<T>;