Rocky_Mountain_Vending/.pnpm-store/v10/files/d5/70a5008d949b02a363a2c78764cc490e3dc45cfcd3d02fc1c73e621e73a16e39832ca6f1699eb5ef0814dfd870c928dc9369bb5770701db562b9462ef0d90c
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

54 lines
1.6 KiB
Text

/**
* @fileOverview Y Axis
*/
import * as React from 'react';
import { BaseAxisProps, AxisInterval, PresentationAttributesAdaptChildEvent } from '../util/types';
interface YAxisProps extends BaseAxisProps {
/** The unique id of y-axis */
yAxisId?: string | number;
/**
* Ticks can be any type when the axis is the type of category
* Ticks must be numbers when the axis is the type of number
*/
ticks?: (string | number)[];
/** The width of axis, which need to be set by the user */
width?: number;
/** The height of axis which is usually calculated in Chart */
height?: number;
mirror?: boolean;
/** The orientation of axis */
orientation?: 'left' | 'right';
padding?: {
top?: number;
bottom?: number;
};
minTickGap?: number;
interval?: AxisInterval;
reversed?: boolean;
tickMargin?: number;
}
export type Props = Omit<PresentationAttributesAdaptChildEvent<any, SVGElement>, 'scale' | 'ref'> & YAxisProps;
export declare class YAxis extends React.Component<Props> {
static displayName: string;
static defaultProps: {
allowDuplicatedCategory: boolean;
allowDecimals: boolean;
hide: boolean;
orientation: string;
width: number;
height: number;
mirror: boolean;
yAxisId: number;
tickCount: number;
type: string;
padding: {
top: number;
bottom: number;
};
allowDataOverflow: boolean;
scale: string;
reversed: boolean;
};
render(): React.JSX.Element;
}
export {};