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>
9 lines
594 B
Text
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;
|