mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-09-09 11:13:57 +08:00
14 lines
428 B
TypeScript
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;
|
|
}
|