import LineString, { LineStringOptionsType } from './LineString'; /** * 曲线样式LineString,所有曲线的抽象父类。 * @english * Curve style LineString, an abstract parent class for all the curves. * @category geometry * @abstract * @extends LineString * @param {Coordinate[]|Number[][]} coordinates - coordinates of the line string * @param {Object} [options=null] - construct options defined in [LineString]{@link LineString#options} * @property {Boolean} [options.enableSimplify=false] - whether to simplify path before rendering * @property {Boolean} [options.enableClip=false] - whether to clip curve with map's current extent */ declare class Curve extends LineString { } export default Curve; export type CurveOptionsType = LineStringOptionsType & { enableSimplify?: boolean; enableClip?: boolean; }; //# sourceMappingURL=Curve.d.ts.map