From e77051ccc4b47951bfa4fde2be436b1bb2fb113b Mon Sep 17 00:00:00 2001 From: Christoph Cullmann Date: Sun, 28 Apr 2024 17:33:09 +0200 Subject: use https://github.com/nunocoracao/blowfish.git --- .../lib/mermaid/diagrams/xychart/xychartDb.d.ts | 40 ++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 themes/blowfish/assets/lib/mermaid/diagrams/xychart/xychartDb.d.ts (limited to 'themes/blowfish/assets/lib/mermaid/diagrams/xychart/xychartDb.d.ts') diff --git a/themes/blowfish/assets/lib/mermaid/diagrams/xychart/xychartDb.d.ts b/themes/blowfish/assets/lib/mermaid/diagrams/xychart/xychartDb.d.ts new file mode 100644 index 0000000..b5cf5a2 --- /dev/null +++ b/themes/blowfish/assets/lib/mermaid/diagrams/xychart/xychartDb.d.ts @@ -0,0 +1,40 @@ +import type { DrawableElem, XYChartConfig, XYChartThemeConfig } from './chartBuilder/interfaces.js'; +import type { Group } from '../../diagram-api/types.js'; +interface NormalTextType { + type: 'text'; + text: string; +} +declare function setTmpSVGG(SVGG: Group): void; +declare function setOrientation(orientation: string): void; +declare function setXAxisTitle(title: NormalTextType): void; +declare function setXAxisRangeData(min: number, max: number): void; +declare function setXAxisBand(categories: NormalTextType[]): void; +declare function setYAxisTitle(title: NormalTextType): void; +declare function setYAxisRangeData(min: number, max: number): void; +declare function setLineData(title: NormalTextType, data: number[]): void; +declare function setBarData(title: NormalTextType, data: number[]): void; +declare function getDrawableElem(): DrawableElem[]; +declare function getChartThemeConfig(): XYChartThemeConfig; +declare function getChartConfig(): XYChartConfig; +declare const _default: { + getDrawableElem: typeof getDrawableElem; + clear: () => void; + setAccTitle: (txt: string) => void; + getAccTitle: () => string; + setDiagramTitle: (txt: string) => void; + getDiagramTitle: () => string; + getAccDescription: () => string; + setAccDescription: (txt: string) => void; + setOrientation: typeof setOrientation; + setXAxisTitle: typeof setXAxisTitle; + setXAxisRangeData: typeof setXAxisRangeData; + setXAxisBand: typeof setXAxisBand; + setYAxisTitle: typeof setYAxisTitle; + setYAxisRangeData: typeof setYAxisRangeData; + setLineData: typeof setLineData; + setBarData: typeof setBarData; + setTmpSVGG: typeof setTmpSVGG; + getChartThemeConfig: typeof getChartThemeConfig; + getChartConfig: typeof getChartConfig; +}; +export default _default; -- cgit v1.2.3