Skip to content

Instantly share code, notes, and snippets.

@tmcw
Last active August 29, 2015 14:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tmcw/15a7c985daf5e031a762 to your computer and use it in GitHub Desktop.
Save tmcw/15a7c985daf5e031a762 to your computer and use it in GitHub Desktop.
/// <reference path="./geojson.d.ts" />
/**
* turf
*/
declare module 'polygon' {
/**
* Create a new polygon given coordinates and properties
*/
function polygon(coordinates: number[][][], properties?: Object): GeoJSON.Polygon;
export = polygon;
}
/// <reference path="./node_modules/turf-polygon/index.d.ts" />
declare module 'turf' {
export var polygon;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment