Rocky_Mountain_Vending/.pnpm-store/v10/files/80/baca2d955a1eb8a5bbd840bf91b805b5f8ed19e870c1503ec82f149b27d6b22da831cc0e1365da0a0c5311cfd7c49cee76071a68074b12a0830a7b6478358b
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

9 lines
594 B
Text

import { AxisDomain, BaseAxisProps } from './types';
/**
* Takes a domain and user props to determine whether he provided the domain via props or if we need to calculate it.
* @param {AxisDomain} domain The potential domain from props
* @param {Boolean} allowDataOverflow from props
* @param {String} axisType from props
* @returns {Boolean} `true` if domain is specified by user
*/
export declare function isDomainSpecifiedByUser(domain: AxisDomain, allowDataOverflow: boolean, axisType: BaseAxisProps['type']): boolean;