/** * @fileoverview 多边形 * @author dxq613@gmail.com */ import ShapeBase from './base'; declare class Polygon extends ShapeBase { isInStrokeOrPath(x: any, y: any, isStroke: any, isFill: any, lineWidth: any): boolean; createPath(context: any): void; } export default Polygon;