Skip to content

Commit 8768a97

Browse files
authoredAug 23, 2023
Merge pull request #105 from rooby/type-fixes
Fix broken types in index.d.ts
2 parents 5f0b705 + 80da96f commit 8768a97

File tree

1 file changed

+18
-19
lines changed

1 file changed

+18
-19
lines changed
 

‎dist/index.d.ts

+18-19
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,19 @@
11
declare module "@mapbox/shp-write" {
2-
export enum OGCGeometry {
3-
NULL,
4-
POINT,
5-
POLYLINE,
6-
POLYGON,
7-
MULTIPOINT,
8-
POINTZ,
9-
POLYLINEZ,
10-
POLYGONZ,
11-
MULTIPOINTZ,
12-
POINTM,
13-
POLYLINEM,
14-
POLYGONM,
15-
MULTIPOINTM,
16-
MULTIPATCH,
17-
}
2+
export type OGCGeometry =
3+
'NULL' |
4+
'POINT' |
5+
'POLYLINE' |
6+
'POLYGON' |
7+
'MULTIPOINT' |
8+
'POINTZ' |
9+
'POLYLINEZ' |
10+
'POLYGONZ' |
11+
'MULTIPOINTZ' |
12+
'POINTM' |
13+
'POLYLINEM' |
14+
'POLYGONM' |
15+
'MULTIPOINTM' |
16+
'MULTIPATCH';
1817

1918
export interface DownloadOptions {
2019
folder?: string;
@@ -50,7 +49,7 @@ declare module "@mapbox/shp-write" {
5049

5150
export function download(
5251
geojson: GeoJSON.FeatureCollection,
53-
options?: DownloadOptions & ZipOptions = {}
52+
options?: DownloadOptions & ZipOptions
5453
): void;
5554

5655
export function write(
@@ -69,6 +68,6 @@ declare module "@mapbox/shp-write" {
6968

7069
export function zip<T extends OutputType>(
7170
geojson: GeoJSON.FeatureCollection,
72-
options: DownloadOptions & ZipOptions = {},
73-
stream = false): Promise<OutputByType[T]>;
71+
options?: DownloadOptions & ZipOptions,
72+
stream?: boolean): Promise<OutputByType[T]>;
7473
}

0 commit comments

Comments
 (0)
Please sign in to comment.