Rocky_Mountain_Vending/.pnpm-store/v10/files/d5/0b3cd4e25ae86f7038079bb8ab94647a5356735b1dbfc0c40e4dd04213d5ba0c11d9b00038cc332a10d4a305ff52330ba4be45116deeb6105aef44622a8a48
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
565 B
Text

export type LazyResult<TValue> = PromiseLike<TValue> & {
value?: TValue;
};
export type ResolvedLazyResult<TValue> = PromiseLike<TValue> & {
value: TValue;
};
/**
* Calls the given async function only when the returned promise-like object is
* awaited. Afterwards, it provides the resolved value synchronously as `value`
* property.
*/
export declare function createLazyResult<TValue>(fn: () => Promise<TValue>): LazyResult<TValue>;
export declare function isResolvedLazyResult<TValue>(result: LazyResult<TValue>): result is ResolvedLazyResult<TValue>;