mirror of https://github.com/Gnucash/gnucash
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.
15 lines
587 B
15 lines
587 B
/**
|
|
* @param {PointElement[] | { x: number; y: number; }} boundary
|
|
* @param {LineElement} line
|
|
* @return {LineElement?}
|
|
*/
|
|
export function _createBoundaryLine(boundary: PointElement[] | {
|
|
x: number;
|
|
y: number;
|
|
}, line: LineElement): LineElement | null;
|
|
export function _shouldApplyFill(source: any): boolean;
|
|
export type Chart = import('../../core/core.controller.js').default;
|
|
export type Scale = import('../../core/core.scale.js').default;
|
|
export type PointElement = import('../../elements/element.point.js').default;
|
|
import { LineElement } from "../../elements/index.js";
|