import { ColorType } from "./color"; export type BorderType = { type?: string; width?: number; algn?: string; cap?: string; cmpd?: string; miterLim?: number; color?: ColorType; lineJoin?: "miter" | "bevel" | "round"; headEnd?: { type: string; len: string; w: string; }; tailEnd?: { type: string; len: string; w: string; }; };