mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
14 lines
661 B
TypeScript
14 lines
661 B
TypeScript
// Type definitions for topojson-server 3.0
|
|
// Project: https://github.com/topojson/topojson-server
|
|
// Definitions by: Ricardo Mello <https://github.com/ricardo-mello>
|
|
// Zhutian Chen <https://github.com/chenzhutian>
|
|
// denisname <https://github.com/denisname>
|
|
// Russell Porter <https://github.com/russellporter>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
// TypeScript Version: 2.5
|
|
|
|
import * as GeoJSON from "geojson";
|
|
import * as TopoJSON from "topojson-specification";
|
|
|
|
export function topology(objects: {[k: string]: GeoJSON.GeoJsonObject}, quantization?: number): TopoJSON.Topology;
|