20 lines
529 B
TypeScript
Raw Permalink Normal View History

2026-05-31 13:21:13 +02:00
/** Returns the styles given options */
export interface FlowChartStyleOptions {
arrowheadColor: string;
border2: string;
clusterBkg: string;
clusterBorder: string;
edgeLabelBackground: string;
fontFamily: string;
lineColor: string;
mainBkg: string;
nodeBorder: string;
nodeTextColor: string;
tertiaryColor: string;
textColor: string;
titleColor: string;
strokeWidth: string;
}
declare const getStyles: (options: FlowChartStyleOptions) => string;
export default getStyles;