Rocky_Mountain_Vending/.pnpm-store/v10/files/29/e9bf2aee277db199bb78ab4b649ca1ec72d95b5a0ec59e477481e78fef20c135f09aa02f2d84d645cf6ebdc78127f530fcecd086a87fe3f46d45e1dc834a16
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
467 B
Text

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