File tree 1 file changed +18
-19
lines changed
1 file changed +18
-19
lines changed Original file line number Diff line number Diff line change 1
1
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' ;
18
17
19
18
export interface DownloadOptions {
20
19
folder ?: string ;
@@ -50,7 +49,7 @@ declare module "@mapbox/shp-write" {
50
49
51
50
export function download (
52
51
geojson : GeoJSON . FeatureCollection ,
53
- options ?: DownloadOptions & ZipOptions = { }
52
+ options ?: DownloadOptions & ZipOptions
54
53
) : void ;
55
54
56
55
export function write (
@@ -69,6 +68,6 @@ declare module "@mapbox/shp-write" {
69
68
70
69
export function zip < T extends OutputType > (
71
70
geojson : GeoJSON . FeatureCollection ,
72
- options : DownloadOptions & ZipOptions = { } ,
73
- stream = false ) : Promise < OutputByType [ T ] > ;
71
+ options ? : DownloadOptions & ZipOptions ,
72
+ stream ?: boolean ) : Promise < OutputByType [ T ] > ;
74
73
}
You can’t perform that action at this time.
0 commit comments