/**
 * The dash line type.
 */
export type DashType =
  'dash' | 'dashDot' | 'dot' |
  'longDash' | 'longDashDot' | 'longDashDotDot' |
  'solid';
