Rocky_Mountain_Vending/.pnpm-store/v10/files/f3/27b1f263d8a2cbac0fb9fab8f327a2efa43e9d390b1220f90024e324935dfe6abdd704057648b4a52ce3fc48b79b499e65358e549089b536feb88c6f757cd2
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

17 lines
No EOL
463 B
Text

import { disposeSymbol } from './disposable.js';
/**
* @internal
*/
export declare class Mutex {
#private;
static Guard: {
new (mutex: Mutex, onRelease?: () => void): {
"__#199@#mutex": Mutex;
"__#199@#onRelease"?: () => void;
[Symbol.dispose](): void;
};
};
acquire(onRelease?: () => void): Promise<InstanceType<typeof Mutex.Guard>>;
release(): void;
}
//# sourceMappingURL=Mutex.d.ts.map