filler.target.stack.d.ts 521 B

1234567891011121314
  1. /**
  2. * @param {{ chart: Chart; scale: Scale; index: number; line: LineElement; }} source
  3. * @return {LineElement}
  4. */
  5. export function _buildStackLine(source: {
  6. chart: Chart;
  7. scale: Scale;
  8. index: number;
  9. line: LineElement;
  10. }): LineElement;
  11. export type Chart = import('../../core/core.controller.js').default;
  12. export type Scale = import('../../core/core.scale.js').default;
  13. export type PointElement = import('../../elements/element.point.js').default;
  14. import { LineElement } from "../../elements/index.js";