blowfish/assets/lib/mermaid/styles.d.ts
2023-03-02 22:28:51 +00:00

11 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;