From 9dc7a501ba7a8e9b54fbf0a78f8799c8f2fbf896 Mon Sep 17 00:00:00 2001 From: James Beard Date: Sun, 15 Dec 2024 09:35:45 +1100 Subject: [PATCH] Updated README.md correcting typo in previous commit Incorrect import statement in previous edit. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c13f7fb62..b9015da16 100644 --- a/README.md +++ b/README.md @@ -55,7 +55,7 @@ Turf modules ship with type definitions packaged in each module. No DefinitelyTy The types defined in the GeoJSON specification are maintained separately (Geometry, Polygon, etc). To refer to these in your own code, install `@types/geojson` and import from there: ```typescript -import { type Polygon } from "@types/geojson"; +import { type Polygon } from "geojson"; ``` ### Other languages