12345678910111213 |
- import { SColor, SLineCapStyle, SLineJoinStyle } from "./";
- export declare class SPen {
- color: SColor;
- lineWidth: number;
- lineCapStyle: SLineCapStyle;
- lineJoinStyle: SLineJoinStyle;
- miterLimit: number;
- lineDash: number[] | null;
- dashOffset: number;
- constructor();
- constructor(pen: SPen);
- constructor(color: SColor, lineWidth?: number);
- }
|