mirror of
https://github.com/nunocoracao/blowfish.git
synced 2026-01-30 16:31:52 +01:00
12 lines
440 B
TypeScript
12 lines
440 B
TypeScript
import { 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;
|