import Zondy from '../Zondy'
/**
* 线端点样式类型
* @readonly
* @enum {String}
*/
const LineCapType = {
/** LineCapType.butt butt类型 */
butt: 'butt',
/** LineCapType.object round类型 */
round: 'round',
/** LineCapType.square square类型 */
square: 'square'
}
Zondy.Enum.LineCapType = LineCapType
export default LineCapType
