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.
10 lines
479 B
10 lines
479 B
/**
|
|
* @typedef { import('../../core/core.controller.js').default } Chart
|
|
* @typedef { import('../../core/core.scale.js').default } Scale
|
|
* @typedef { import('../../elements/element.point.js').default } PointElement
|
|
*/
|
|
export function _getTarget(source: any): any;
|
|
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;
|