layout.d.ts 435 B

12345
  1. import { Coordinate } from '@antv/coord';
  2. import { Layout, G2Theme } from './types/common';
  3. import { G2GuideComponentOptions, G2Library, G2View } from './types/options';
  4. export declare function computeLayout(components: G2GuideComponentOptions[], options: G2View, theme: G2Theme, library: G2Library): Layout;
  5. export declare function placeComponents(components: G2GuideComponentOptions[], coordinate: Coordinate, layout: Layout): void;