blowfish/assets/lib/mermaid/styles.d.ts

12 lines
445 B
TypeScript
Raw Normal View History

2023-03-02 22:28:51 +00:00
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;