mirror of
https://github.com/nunocoracao/blowfish.git
synced 2025-01-23 06:55:43 -06: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;
|