Files

14 lines
428 B
TypeScript

// Type definitions for leaflet-curve 0.0.1
// Project: https://github.com/onikiienko/Leaflet.curve
// Definitions by: Onikiienko <https://github.com/onikiienko>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
/// <reference path="../leaflet/leaflet.d.ts" />
declare namespace L {
/**
* Drawing Bezier curves and other complex shapes.
*/
function curve(path: any[], options?: L.PathOptions): Path;
}