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>
17 lines
No EOL
463 B
Text
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 |