mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-06-05 06:40:35 +08:00
* Update `TypeScript Version`s to be at least as high as dependencies' versions * Run through again
15 lines
436 B
TypeScript
15 lines
436 B
TypeScript
// Type definitions for leaflet-curve 0.1
|
|
// Project: https://github.com/onikiienko/Leaflet.curve
|
|
// Definitions by: Onikiienko <https://github.com/onikiienko>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
// TypeScript Version: 2.3
|
|
|
|
import * as L from 'leaflet';
|
|
|
|
declare module 'leaflet' {
|
|
/**
|
|
* Drawing Bezier curves and other complex shapes.
|
|
*/
|
|
function curve(path: any[], options?: PathOptions): Path;
|
|
}
|