import FillStyle from "./FillStyle"; import LabelStyle, { LabelBoxStyle, LabelPositionStyle } from "./LabelStyle"; import StrokeStyle from "./StrokeStyle"; import TextStyle from "./TextStyle"; class Style { constructor(c?: Style) { c && Object.assign(this, c); } activeColor?: string; size?: number; fill?: FillStyle; stroke?: StrokeStyle; label?: LabelStyle; } export { FillStyle, LabelStyle, StrokeStyle, TextStyle, Style };