Files
greptimedb/static.files.mermaid/styles.d.ts
2025-12-22 06:16:12 +00:00

12 lines
445 B
TypeScript

import type { FlowChartStyleOptions } from './diagrams/flowchart/styles';
declare const getStyles: (type: string, userStyles: string, options: {
fontFamily: string;
fontSize: string;
textColor: string;
errorBkgColor: string;
errorTextColor: string;
lineColor: string;
} & FlowChartStyleOptions) => string;
export declare const addStylesForDiagram: (type: string, diagramTheme: unknown) => void;
export default getStyles;