import { Arrow } from './arrow'; import { LineStyleType } from './line-style-type'; export interface LineGeneralData { stroke: string; strokeWidth: number; lineType: LineStyleType; arrow: Arrow; }