Rocky_Mountain_Vending/.pnpm-store/v10/files/e6/632e5ed921d62805a65c9072fa596398f2780ab7ad01fcf2ccb462e1a3767eee20aa758cf6d82158d0dc05251c5b39bdd9f2cdc5b69e5ded82a1e1e1e29774
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
No EOL
248 B
Text

export declare class Deferred<T> {
private _promise;
private _resolve;
private _reject;
constructor();
get promise(): Promise<T>;
resolve(val: T): void;
reject(err: unknown): void;
}
//# sourceMappingURL=promise.d.ts.map