import { MarkerShapeOptions } from './MarkerShapeOptions'


/**
 * MarkerShape用于划定Marker的可点击区域范围
 *
 * @export
 * @class MarkerShape
 */
export class MarkerShape {

  /**
   *Creates an instance of MarkerShape.
   * @param {(Object|MarkerShapeOptions)} opt
   * @memberof MarkerShape
   */
  constructor(
    opt: Object | MarkerShapeOptions
  )
}