mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-22 03:37:53 +08:00
14 lines
413 B
TypeScript
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;
|
|
}
|