axis.d.ts 596 B

123456789
  1. import { type GenericAnimation } from '../../animation';
  2. import { GUI } from '../../core';
  3. import { Group } from '../../shapes';
  4. import type { AxisOptions, AxisStyleProps, RequiredAxisStyleProps } from './types';
  5. export type { ArcAxisOptions, ArcAxisStyleProps, AxisOptions, AxisStyleProps, LinearAxisOptions, LinearAxisStyleProps, } from './types';
  6. export declare class Axis extends GUI<AxisStyleProps> {
  7. constructor(options: AxisOptions);
  8. render(attributes: RequiredAxisStyleProps, container: Group, specificAnimation?: GenericAnimation): import("../../animation").AnimationResult[];
  9. }