Files
DefinitelyTyped/leaflet-curve/index.d.ts

14 lines
413 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 types="leaflet" />
declare namespace L {
/**
* Drawing Bezier curves and other complex shapes.
*/
function curve(path: any[], options?: L.PathOptions): Path;
}