SPen.d.ts 378 B

12345678910111213
  1. import { SColor, SLineCapStyle, SLineJoinStyle } from "./";
  2. export declare class SPen {
  3. color: SColor;
  4. lineWidth: number;
  5. lineCapStyle: SLineCapStyle;
  6. lineJoinStyle: SLineJoinStyle;
  7. miterLimit: number;
  8. lineDash: number[] | null;
  9. dashOffset: number;
  10. constructor();
  11. constructor(pen: SPen);
  12. constructor(color: SColor, lineWidth?: number);
  13. }