You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

9 lines
600 B

import type { GenericAnimation } from '../../animation';
import { Component } from '../../core';
import { Group } from '../../shapes';
import type { AxisOptions, AxisStyleProps, RequiredAxisStyleProps } from './types';
export type { ArcAxisOptions, ArcAxisStyleProps, AxisOptions, AxisStyleProps, LinearAxisOptions, LinearAxisStyleProps, } from './types';
export declare class Axis extends Component<AxisStyleProps> {
constructor(options: AxisOptions);
render(attributes: RequiredAxisStyleProps, container: Group, specificAnimation?: GenericAnimation): import("@antv/g-lite").IAnimation[];
}