Rocky_Mountain_Vending/.pnpm-store/v10/files/62/9e650ef017b0772b893e1c4a0651dfb1822ff62c8e1a18944bf12de0e3998e84b5e22048e72a2072a6b4a9188ebb1707ed803f7bdb165a53b1e5c3b96113c9
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

26 lines
No EOL
659 B
Text

/**
* @license
* Copyright 2021 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
/**
* @param {any[]} array
* @param {any} needle
* @param {any} comparator
*/
declare function lowerBound(array: any[], needle: any, comparator: any, left: any, right: any): any;
/**
* @param {any[]} array
* @param {any} needle
* @param {any} comparator
*/
declare function upperBound(array: any[], needle: any, comparator: any, left: any, right: any): any;
export namespace ArrayUtilities {
export { lowerBound };
export { upperBound };
}
export namespace DevToolsPath {
let EmptyUrlString: string;
}
export {};
//# sourceMappingURL=Platform.d.ts.map