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.helper.d.ts 587B

1234567891011121314
  1. /**
  2. * @param {PointElement[] | { x: number; y: number; }} boundary
  3. * @param {LineElement} line
  4. * @return {LineElement?}
  5. */
  6. export function _createBoundaryLine(boundary: PointElement[] | {
  7. x: number;
  8. y: number;
  9. }, line: LineElement): LineElement | null;
  10. export function _shouldApplyFill(source: any): boolean;
  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";