/**
 * 绘图配置相关类型定义
 * 定义了绘图相关的枚举类型
 */

/** 圆弧端点类型 */
export type arcCapType = "butt" | "round" | "-round"
/** 文字水平对齐方式 */
export type textAlignType = "left" | "center" | "right"
/** 文字垂直对齐方式 */
export type textBaselineType = "top" | "middle" | "bottom"
/** 线条端点类型 */
export type lineCapType = "butt" | "round" | "square"
/** 线条连接方式 */
export type lineJoinType = "miter" | "bevel" | "round"