Node-Red configuration
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.

filler.target.stack.d.ts 521B

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";