polygon.d.ts 218 B

12345678
  1. import ShapeBase from './base';
  2. declare class Polygon extends ShapeBase {
  3. type: string;
  4. canFill: boolean;
  5. canStroke: boolean;
  6. createPath(context: any, targetAttrs: any): void;
  7. }
  8. export default Polygon;