10 lines
343 B
TypeScript
10 lines
343 B
TypeScript
import * as React from 'react';
|
|
import { ChartsXAxisProps } from "../models/axis.js";
|
|
interface ChartsSingleXAxisProps extends ChartsXAxisProps {
|
|
axisLabelHeight: number;
|
|
}
|
|
/**
|
|
* @ignore - internal component.
|
|
*/
|
|
declare function ChartsSingleXAxisTicks(inProps: ChartsSingleXAxisProps): React.JSX.Element;
|
|
export { ChartsSingleXAxisTicks }; |