From 3be5285488090ab70254b3080e33e64e6c702d2c Mon Sep 17 00:00:00 2001 From: Christoph Cullmann Date: Mon, 15 Jul 2024 22:27:55 +0200 Subject: sync theme --- .../chartBuilder/components/axis/bandAxis.d.ts | 12 -- .../chartBuilder/components/axis/baseAxis.d.ts | 38 ------ .../chartBuilder/components/axis/index.d.ts | 12 -- .../chartBuilder/components/axis/linearAxis.d.ts | 11 -- .../chartBuilder/components/chartTitle.d.ts | 16 --- .../chartBuilder/components/plot/barPlot.d.ts | 12 -- .../chartBuilder/components/plot/index.d.ts | 20 ---- .../chartBuilder/components/plot/linePlot.d.ts | 11 -- .../diagrams/xychart/chartBuilder/index.d.ts | 5 - .../diagrams/xychart/chartBuilder/interfaces.d.ts | 132 --------------------- .../xychart/chartBuilder/orchestrator.d.ts | 12 -- .../chartBuilder/textDimensionCalculator.d.ts | 10 -- .../xychart/parser/xychart.jison.spec.d.ts | 1 - .../lib/mermaid/diagrams/xychart/xychartDb.d.ts | 40 ------- .../mermaid/diagrams/xychart/xychartDetector.d.ts | 3 - .../mermaid/diagrams/xychart/xychartDiagram.d.ts | 2 - .../mermaid/diagrams/xychart/xychartRenderer.d.ts | 6 - 17 files changed, 343 deletions(-) delete mode 100644 themes/blowfish/assets/lib/mermaid/diagrams/xychart/chartBuilder/components/axis/bandAxis.d.ts delete mode 100644 themes/blowfish/assets/lib/mermaid/diagrams/xychart/chartBuilder/components/axis/baseAxis.d.ts delete mode 100644 themes/blowfish/assets/lib/mermaid/diagrams/xychart/chartBuilder/components/axis/index.d.ts delete mode 100644 themes/blowfish/assets/lib/mermaid/diagrams/xychart/chartBuilder/components/axis/linearAxis.d.ts delete mode 100644 themes/blowfish/assets/lib/mermaid/diagrams/xychart/chartBuilder/components/chartTitle.d.ts delete mode 100644 themes/blowfish/assets/lib/mermaid/diagrams/xychart/chartBuilder/components/plot/barPlot.d.ts delete mode 100644 themes/blowfish/assets/lib/mermaid/diagrams/xychart/chartBuilder/components/plot/index.d.ts delete mode 100644 themes/blowfish/assets/lib/mermaid/diagrams/xychart/chartBuilder/components/plot/linePlot.d.ts delete mode 100644 themes/blowfish/assets/lib/mermaid/diagrams/xychart/chartBuilder/index.d.ts delete mode 100644 themes/blowfish/assets/lib/mermaid/diagrams/xychart/chartBuilder/interfaces.d.ts delete mode 100644 themes/blowfish/assets/lib/mermaid/diagrams/xychart/chartBuilder/orchestrator.d.ts delete mode 100644 themes/blowfish/assets/lib/mermaid/diagrams/xychart/chartBuilder/textDimensionCalculator.d.ts delete mode 100644 themes/blowfish/assets/lib/mermaid/diagrams/xychart/parser/xychart.jison.spec.d.ts delete mode 100644 themes/blowfish/assets/lib/mermaid/diagrams/xychart/xychartDb.d.ts delete mode 100644 themes/blowfish/assets/lib/mermaid/diagrams/xychart/xychartDetector.d.ts delete mode 100644 themes/blowfish/assets/lib/mermaid/diagrams/xychart/xychartDiagram.d.ts delete mode 100644 themes/blowfish/assets/lib/mermaid/diagrams/xychart/xychartRenderer.d.ts (limited to 'themes/blowfish/assets/lib/mermaid/diagrams/xychart') diff --git a/themes/blowfish/assets/lib/mermaid/diagrams/xychart/chartBuilder/components/axis/bandAxis.d.ts b/themes/blowfish/assets/lib/mermaid/diagrams/xychart/chartBuilder/components/axis/bandAxis.d.ts deleted file mode 100644 index 91cea40..0000000 --- a/themes/blowfish/assets/lib/mermaid/diagrams/xychart/chartBuilder/components/axis/bandAxis.d.ts +++ /dev/null @@ -1,12 +0,0 @@ -import type { TextDimensionCalculator } from '../../textDimensionCalculator.js'; -import { BaseAxis } from './baseAxis.js'; -import type { XYChartAxisThemeConfig, XYChartAxisConfig } from '../../interfaces.js'; -export declare class BandAxis extends BaseAxis { - private scale; - private categories; - constructor(axisConfig: XYChartAxisConfig, axisThemeConfig: XYChartAxisThemeConfig, categories: string[], title: string, textDimensionCalculator: TextDimensionCalculator); - setRange(range: [number, number]): void; - recalculateScale(): void; - getTickValues(): (string | number)[]; - getScaleValue(value: string): number; -} diff --git a/themes/blowfish/assets/lib/mermaid/diagrams/xychart/chartBuilder/components/axis/baseAxis.d.ts b/themes/blowfish/assets/lib/mermaid/diagrams/xychart/chartBuilder/components/axis/baseAxis.d.ts deleted file mode 100644 index fca4df7..0000000 --- a/themes/blowfish/assets/lib/mermaid/diagrams/xychart/chartBuilder/components/axis/baseAxis.d.ts +++ /dev/null @@ -1,38 +0,0 @@ -import type { BoundingRect, Dimension, DrawableElem, Point, XYChartAxisConfig, XYChartAxisThemeConfig } from '../../interfaces.js'; -import type { TextDimensionCalculator } from '../../textDimensionCalculator.js'; -import type { Axis, AxisPosition } from './index.js'; -export declare abstract class BaseAxis implements Axis { - protected axisConfig: XYChartAxisConfig; - protected title: string; - protected textDimensionCalculator: TextDimensionCalculator; - protected axisThemeConfig: XYChartAxisThemeConfig; - protected boundingRect: BoundingRect; - protected axisPosition: AxisPosition; - private range; - protected showTitle: boolean; - protected showLabel: boolean; - protected showTick: boolean; - protected showAxisLine: boolean; - protected outerPadding: number; - protected titleTextHeight: number; - protected labelTextHeight: number; - constructor(axisConfig: XYChartAxisConfig, title: string, textDimensionCalculator: TextDimensionCalculator, axisThemeConfig: XYChartAxisThemeConfig); - setRange(range: [number, number]): void; - getRange(): [number, number]; - setAxisPosition(axisPosition: AxisPosition): void; - abstract getScaleValue(value: number | string): number; - abstract recalculateScale(): void; - abstract getTickValues(): Array; - getTickDistance(): number; - getAxisOuterPadding(): number; - private getLabelDimension; - recalculateOuterPaddingToDrawBar(): void; - private calculateSpaceIfDrawnHorizontally; - private calculateSpaceIfDrawnVertical; - calculateSpace(availableSpace: Dimension): Dimension; - setBoundingBoxXY(point: Point): void; - private getDrawableElementsForLeftAxis; - private getDrawableElementsForBottomAxis; - private getDrawableElementsForTopAxis; - getDrawableElements(): DrawableElem[]; -} diff --git a/themes/blowfish/assets/lib/mermaid/diagrams/xychart/chartBuilder/components/axis/index.d.ts b/themes/blowfish/assets/lib/mermaid/diagrams/xychart/chartBuilder/components/axis/index.d.ts deleted file mode 100644 index c982214..0000000 --- a/themes/blowfish/assets/lib/mermaid/diagrams/xychart/chartBuilder/components/axis/index.d.ts +++ /dev/null @@ -1,12 +0,0 @@ -import type { Group } from '../../../../../diagram-api/types.js'; -import type { AxisDataType, ChartComponent, XYChartAxisConfig, XYChartAxisThemeConfig } from '../../interfaces.js'; -export type AxisPosition = 'left' | 'right' | 'top' | 'bottom'; -export interface Axis extends ChartComponent { - getScaleValue(value: string | number): number; - setAxisPosition(axisPosition: AxisPosition): void; - getAxisOuterPadding(): number; - getTickDistance(): number; - recalculateOuterPaddingToDrawBar(): void; - setRange(range: [number, number]): void; -} -export declare function getAxis(data: AxisDataType, axisConfig: XYChartAxisConfig, axisThemeConfig: XYChartAxisThemeConfig, tmpSVGGroup: Group): Axis; diff --git a/themes/blowfish/assets/lib/mermaid/diagrams/xychart/chartBuilder/components/axis/linearAxis.d.ts b/themes/blowfish/assets/lib/mermaid/diagrams/xychart/chartBuilder/components/axis/linearAxis.d.ts deleted file mode 100644 index 869b751..0000000 --- a/themes/blowfish/assets/lib/mermaid/diagrams/xychart/chartBuilder/components/axis/linearAxis.d.ts +++ /dev/null @@ -1,11 +0,0 @@ -import type { TextDimensionCalculator } from '../../textDimensionCalculator.js'; -import { BaseAxis } from './baseAxis.js'; -import type { XYChartAxisThemeConfig, XYChartAxisConfig } from '../../interfaces.js'; -export declare class LinearAxis extends BaseAxis { - private scale; - private domain; - constructor(axisConfig: XYChartAxisConfig, axisThemeConfig: XYChartAxisThemeConfig, domain: [number, number], title: string, textDimensionCalculator: TextDimensionCalculator); - getTickValues(): (string | number)[]; - recalculateScale(): void; - getScaleValue(value: number): number; -} diff --git a/themes/blowfish/assets/lib/mermaid/diagrams/xychart/chartBuilder/components/chartTitle.d.ts b/themes/blowfish/assets/lib/mermaid/diagrams/xychart/chartBuilder/components/chartTitle.d.ts deleted file mode 100644 index 6e249a3..0000000 --- a/themes/blowfish/assets/lib/mermaid/diagrams/xychart/chartBuilder/components/chartTitle.d.ts +++ /dev/null @@ -1,16 +0,0 @@ -import type { Group } from '../../../../diagram-api/types.js'; -import type { ChartComponent, Dimension, DrawableElem, Point, XYChartData, XYChartThemeConfig, XYChartConfig } from '../interfaces.js'; -import type { TextDimensionCalculator } from '../textDimensionCalculator.js'; -export declare class ChartTitle implements ChartComponent { - private textDimensionCalculator; - private chartConfig; - private chartData; - private chartThemeConfig; - private boundingRect; - private showChartTitle; - constructor(textDimensionCalculator: TextDimensionCalculator, chartConfig: XYChartConfig, chartData: XYChartData, chartThemeConfig: XYChartThemeConfig); - setBoundingBoxXY(point: Point): void; - calculateSpace(availableSpace: Dimension): Dimension; - getDrawableElements(): DrawableElem[]; -} -export declare function getChartTitleComponent(chartConfig: XYChartConfig, chartData: XYChartData, chartThemeConfig: XYChartThemeConfig, tmpSVGGroup: Group): ChartComponent; diff --git a/themes/blowfish/assets/lib/mermaid/diagrams/xychart/chartBuilder/components/plot/barPlot.d.ts b/themes/blowfish/assets/lib/mermaid/diagrams/xychart/chartBuilder/components/plot/barPlot.d.ts deleted file mode 100644 index 60bc08e..0000000 --- a/themes/blowfish/assets/lib/mermaid/diagrams/xychart/chartBuilder/components/plot/barPlot.d.ts +++ /dev/null @@ -1,12 +0,0 @@ -import type { BarPlotData, BoundingRect, DrawableElem, XYChartConfig } from '../../interfaces.js'; -import type { Axis } from '../axis/index.js'; -export declare class BarPlot { - private barData; - private boundingRect; - private xAxis; - private yAxis; - private orientation; - private plotIndex; - constructor(barData: BarPlotData, boundingRect: BoundingRect, xAxis: Axis, yAxis: Axis, orientation: XYChartConfig['chartOrientation'], plotIndex: number); - getDrawableElement(): DrawableElem[]; -} diff --git a/themes/blowfish/assets/lib/mermaid/diagrams/xychart/chartBuilder/components/plot/index.d.ts b/themes/blowfish/assets/lib/mermaid/diagrams/xychart/chartBuilder/components/plot/index.d.ts deleted file mode 100644 index ae8b5a0..0000000 --- a/themes/blowfish/assets/lib/mermaid/diagrams/xychart/chartBuilder/components/plot/index.d.ts +++ /dev/null @@ -1,20 +0,0 @@ -import type { XYChartData, Dimension, DrawableElem, Point, XYChartThemeConfig, XYChartConfig } from '../../interfaces.js'; -import type { Axis } from '../axis/index.js'; -import type { ChartComponent } from '../../interfaces.js'; -export interface Plot extends ChartComponent { - setAxes(xAxis: Axis, yAxis: Axis): void; -} -export declare class BasePlot implements Plot { - private chartConfig; - private chartData; - private chartThemeConfig; - private boundingRect; - private xAxis?; - private yAxis?; - constructor(chartConfig: XYChartConfig, chartData: XYChartData, chartThemeConfig: XYChartThemeConfig); - setAxes(xAxis: Axis, yAxis: Axis): void; - setBoundingBoxXY(point: Point): void; - calculateSpace(availableSpace: Dimension): Dimension; - getDrawableElements(): DrawableElem[]; -} -export declare function getPlotComponent(chartConfig: XYChartConfig, chartData: XYChartData, chartThemeConfig: XYChartThemeConfig): Plot; diff --git a/themes/blowfish/assets/lib/mermaid/diagrams/xychart/chartBuilder/components/plot/linePlot.d.ts b/themes/blowfish/assets/lib/mermaid/diagrams/xychart/chartBuilder/components/plot/linePlot.d.ts deleted file mode 100644 index bc268c3..0000000 --- a/themes/blowfish/assets/lib/mermaid/diagrams/xychart/chartBuilder/components/plot/linePlot.d.ts +++ /dev/null @@ -1,11 +0,0 @@ -import type { DrawableElem, LinePlotData, XYChartConfig } from '../../interfaces.js'; -import type { Axis } from '../axis/index.js'; -export declare class LinePlot { - private plotData; - private xAxis; - private yAxis; - private orientation; - private plotIndex; - constructor(plotData: LinePlotData, xAxis: Axis, yAxis: Axis, orientation: XYChartConfig['chartOrientation'], plotIndex: number); - getDrawableElement(): DrawableElem[]; -} diff --git a/themes/blowfish/assets/lib/mermaid/diagrams/xychart/chartBuilder/index.d.ts b/themes/blowfish/assets/lib/mermaid/diagrams/xychart/chartBuilder/index.d.ts deleted file mode 100644 index f7d33b8..0000000 --- a/themes/blowfish/assets/lib/mermaid/diagrams/xychart/chartBuilder/index.d.ts +++ /dev/null @@ -1,5 +0,0 @@ -import type { Group } from '../../../diagram-api/types.js'; -import type { DrawableElem, XYChartConfig, XYChartData, XYChartThemeConfig } from './interfaces.js'; -export declare class XYChartBuilder { - static build(config: XYChartConfig, chartData: XYChartData, chartThemeConfig: XYChartThemeConfig, tmpSVGGroup: Group): DrawableElem[]; -} diff --git a/themes/blowfish/assets/lib/mermaid/diagrams/xychart/chartBuilder/interfaces.d.ts b/themes/blowfish/assets/lib/mermaid/diagrams/xychart/chartBuilder/interfaces.d.ts deleted file mode 100644 index bbf7194..0000000 --- a/themes/blowfish/assets/lib/mermaid/diagrams/xychart/chartBuilder/interfaces.d.ts +++ /dev/null @@ -1,132 +0,0 @@ -export interface XYChartAxisThemeConfig { - titleColor: string; - labelColor: string; - tickColor: string; - axisLineColor: string; -} -export interface XYChartThemeConfig { - backgroundColor: string; - titleColor: string; - xAxisLabelColor: string; - xAxisTitleColor: string; - xAxisTickColor: string; - xAxisLineColor: string; - yAxisLabelColor: string; - yAxisTitleColor: string; - yAxisTickColor: string; - yAxisLineColor: string; - plotColorPalette: string; -} -export interface ChartComponent { - calculateSpace(availableSpace: Dimension): Dimension; - setBoundingBoxXY(point: Point): void; - getDrawableElements(): DrawableElem[]; -} -export type SimplePlotDataType = [string, number][]; -export interface LinePlotData { - type: 'line'; - strokeFill: string; - strokeWidth: number; - data: SimplePlotDataType; -} -export interface BarPlotData { - type: 'bar'; - fill: string; - data: SimplePlotDataType; -} -export type PlotData = LinePlotData | BarPlotData; -export declare function isBarPlot(data: PlotData): data is BarPlotData; -export interface BandAxisDataType { - type: 'band'; - title: string; - categories: string[]; -} -export interface LinearAxisDataType { - type: 'linear'; - title: string; - min: number; - max: number; -} -export type AxisDataType = LinearAxisDataType | BandAxisDataType; -export declare function isBandAxisData(data: AxisDataType): data is BandAxisDataType; -export declare function isLinearAxisData(data: AxisDataType): data is LinearAxisDataType; -/** - * For now we are keeping this configs as we are removing the required fields while generating the config.type.ts file - * we should remove `XYChartAxisConfig` and `XYChartConfig` after we started using required fields - */ -export interface XYChartAxisConfig { - showLabel: boolean; - labelFontSize: number; - labelPadding: number; - showTitle: boolean; - titleFontSize: number; - titlePadding: number; - showTick: boolean; - tickLength: number; - tickWidth: number; - showAxisLine: boolean; - axisLineWidth: number; -} -export interface XYChartConfig { - width: number; - height: number; - titleFontSize: number; - titlePadding: number; - showTitle: boolean; - xAxis: XYChartAxisConfig; - yAxis: XYChartAxisConfig; - chartOrientation: 'vertical' | 'horizontal'; - plotReservedSpacePercent: number; -} -export interface XYChartData { - xAxis: AxisDataType; - yAxis: AxisDataType; - title: string; - plots: PlotData[]; -} -export interface Dimension { - width: number; - height: number; -} -export interface BoundingRect extends Point, Dimension { -} -export interface Point { - x: number; - y: number; -} -export type TextHorizontalPos = 'left' | 'center' | 'right'; -export type TextVerticalPos = 'top' | 'middle'; -export interface RectElem extends Point { - width: number; - height: number; - fill: string; - strokeWidth: number; - strokeFill: string; -} -export interface TextElem extends Point { - text: string; - fill: string; - verticalPos: TextVerticalPos; - horizontalPos: TextHorizontalPos; - fontSize: number; - rotation: number; -} -export interface PathElem { - path: string; - fill?: string; - strokeWidth: number; - strokeFill: string; -} -export type DrawableElem = { - groupTexts: string[]; - type: 'rect'; - data: RectElem[]; -} | { - groupTexts: string[]; - type: 'text'; - data: TextElem[]; -} | { - groupTexts: string[]; - type: 'path'; - data: PathElem[]; -}; diff --git a/themes/blowfish/assets/lib/mermaid/diagrams/xychart/chartBuilder/orchestrator.d.ts b/themes/blowfish/assets/lib/mermaid/diagrams/xychart/chartBuilder/orchestrator.d.ts deleted file mode 100644 index 30bbb82..0000000 --- a/themes/blowfish/assets/lib/mermaid/diagrams/xychart/chartBuilder/orchestrator.d.ts +++ /dev/null @@ -1,12 +0,0 @@ -import type { DrawableElem, XYChartConfig, XYChartData, XYChartThemeConfig } from './interfaces.js'; -import type { Group } from '../../../diagram-api/types.js'; -export declare class Orchestrator { - private chartConfig; - private chartData; - private componentStore; - constructor(chartConfig: XYChartConfig, chartData: XYChartData, chartThemeConfig: XYChartThemeConfig, tmpSVGGroup: Group); - private calculateVerticalSpace; - private calculateHorizontalSpace; - private calculateSpace; - getDrawableElement(): DrawableElem[]; -} diff --git a/themes/blowfish/assets/lib/mermaid/diagrams/xychart/chartBuilder/textDimensionCalculator.d.ts b/themes/blowfish/assets/lib/mermaid/diagrams/xychart/chartBuilder/textDimensionCalculator.d.ts deleted file mode 100644 index e648b03..0000000 --- a/themes/blowfish/assets/lib/mermaid/diagrams/xychart/chartBuilder/textDimensionCalculator.d.ts +++ /dev/null @@ -1,10 +0,0 @@ -import type { Dimension } from './interfaces.js'; -import type { Group } from '../../../diagram-api/types.js'; -export interface TextDimensionCalculator { - getMaxDimension(texts: string[], fontSize: number): Dimension; -} -export declare class TextDimensionCalculatorWithFont implements TextDimensionCalculator { - private parentGroup; - constructor(parentGroup: Group); - getMaxDimension(texts: string[], fontSize: number): Dimension; -} diff --git a/themes/blowfish/assets/lib/mermaid/diagrams/xychart/parser/xychart.jison.spec.d.ts b/themes/blowfish/assets/lib/mermaid/diagrams/xychart/parser/xychart.jison.spec.d.ts deleted file mode 100644 index cb0ff5c..0000000 --- a/themes/blowfish/assets/lib/mermaid/diagrams/xychart/parser/xychart.jison.spec.d.ts +++ /dev/null @@ -1 +0,0 @@ -export {}; diff --git a/themes/blowfish/assets/lib/mermaid/diagrams/xychart/xychartDb.d.ts b/themes/blowfish/assets/lib/mermaid/diagrams/xychart/xychartDb.d.ts deleted file mode 100644 index b5cf5a2..0000000 --- a/themes/blowfish/assets/lib/mermaid/diagrams/xychart/xychartDb.d.ts +++ /dev/null @@ -1,40 +0,0 @@ -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; diff --git a/themes/blowfish/assets/lib/mermaid/diagrams/xychart/xychartDetector.d.ts b/themes/blowfish/assets/lib/mermaid/diagrams/xychart/xychartDetector.d.ts deleted file mode 100644 index 46efe84..0000000 --- a/themes/blowfish/assets/lib/mermaid/diagrams/xychart/xychartDetector.d.ts +++ /dev/null @@ -1,3 +0,0 @@ -import type { ExternalDiagramDefinition } from '../../diagram-api/types.js'; -declare const plugin: ExternalDiagramDefinition; -export default plugin; diff --git a/themes/blowfish/assets/lib/mermaid/diagrams/xychart/xychartDiagram.d.ts b/themes/blowfish/assets/lib/mermaid/diagrams/xychart/xychartDiagram.d.ts deleted file mode 100644 index f7aaea1..0000000 --- a/themes/blowfish/assets/lib/mermaid/diagrams/xychart/xychartDiagram.d.ts +++ /dev/null @@ -1,2 +0,0 @@ -import type { DiagramDefinition } from '../../diagram-api/types.js'; -export declare const diagram: DiagramDefinition; diff --git a/themes/blowfish/assets/lib/mermaid/diagrams/xychart/xychartRenderer.d.ts b/themes/blowfish/assets/lib/mermaid/diagrams/xychart/xychartRenderer.d.ts deleted file mode 100644 index b91b530..0000000 --- a/themes/blowfish/assets/lib/mermaid/diagrams/xychart/xychartRenderer.d.ts +++ /dev/null @@ -1,6 +0,0 @@ -import type { Diagram } from '../../Diagram.js'; -export declare const draw: (txt: string, id: string, _version: string, diagObj: Diagram) => void; -declare const _default: { - draw: (txt: string, id: string, _version: string, diagObj: Diagram) => void; -}; -export default _default; -- cgit v1.2.3