index.d.ts 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  1. declare const _default: new (props: any, context: any) => {
  2. coordController: import("../../controller/coord").default;
  3. coord: import("../../coord/base").default;
  4. color: import("../../attr/category").default;
  5. triggerRef: import("../../types").Ref[];
  6. didMount(): void;
  7. _mapping(children: any): void;
  8. sunburst(): any;
  9. render(): import("../..").JSX.Element;
  10. props: any;
  11. state: any;
  12. context: import("../../base/component").ComponentContext;
  13. refs: {
  14. [key: string]: import("../../base/component").default<any, any>;
  15. };
  16. updater: import("../../base/component").Updater<any>;
  17. children: import("../..").JSX.Element;
  18. container: any;
  19. animate: boolean;
  20. destroyed: boolean;
  21. willMount(): void;
  22. willReceiveProps(_props: any, context?: any): void;
  23. willUpdate(): void;
  24. didUpdate(): void;
  25. didUnmount(): void;
  26. setState(partialState: any, callback?: () => void): void;
  27. forceUpdate(callback?: () => void): void;
  28. setAnimate(animate: boolean): void;
  29. destroy(): void;
  30. };
  31. export default _default;
  32. import withSunburst from "./withSunburst";
  33. import SunburstView from "./sunburstView";
  34. import IcicleView from "./icicleView";
  35. export { withSunburst, SunburstView, IcicleView };