Skip to content

Commit 20bea82

Browse files
authored
Merge pull request #27 from RobinVdBroeck/generic-types
Export generic types
2 parents e00bbcb + 52b8f7e commit 20bea82

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

src/index.ts

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ export {
44
GeoJSON2DGeometrySchema,
55
GeoJSON3DGeometrySchema,
66
GeoJSONGeometryGenericSchema,
7+
type GeoJSONGeometryGenericSchemaType,
78
type GeoJSONGeometryGeneric,
89
GeoJSONGeometrySchema,
910
type GeoJSON2DGeometry,
@@ -16,6 +17,7 @@ export {
1617
GeoJSON2DGeometryCollectionSchema,
1718
GeoJSON3DGeometryCollectionSchema,
1819
GeoJSONGeometryCollectionGenericSchema,
20+
type GeoJSONGeometryCollectionGenericSchemaType,
1921
GeoJSONGeometryCollectionSchema,
2022
type GeoJSON2DGeometryCollection,
2123
type GeoJSON3DGeometryCollection,
@@ -26,6 +28,7 @@ export {
2628
GeoJSON2DLineStringSchema,
2729
GeoJSON3DLineStringSchema,
2830
GeoJSONLineStringGenericSchema,
31+
type GeoJSONLineStringGenericSchemaType,
2932
GeoJSONLineStringSchema,
3033
type GeoJSON2DLineString,
3134
type GeoJSON3DLineString,
@@ -36,6 +39,7 @@ export {
3639
GeoJSON2DMultiLineStringSchema,
3740
GeoJSON3DMultiLineStringSchema,
3841
GeoJSONMultiLineStringGenericSchema,
42+
type GeoJSONMultiLineStringGenericSchemaType,
3943
GeoJSONMultiLineStringSchema,
4044
type GeoJSON2DMultiLineString,
4145
type GeoJSON3DMultiLineString,
@@ -46,6 +50,7 @@ export {
4650
GeoJSON2DMultiPointSchema,
4751
GeoJSON3DMultiPointSchema,
4852
GeoJSONMultiPointGenericSchema,
53+
type GeoJSONMultiPointGenericSchemaType,
4954
GeoJSONMultiPointSchema,
5055
type GeoJSON2DMultiPoint,
5156
type GeoJSON3DMultiPoint,
@@ -56,6 +61,7 @@ export {
5661
GeoJSON2DMultiPolygonSchema,
5762
GeoJSON3DMultiPolygonSchema,
5863
GeoJSONMultiPolygonGenericSchema,
64+
type GeoJSONMultiPolygonGenericSchemaType,
5965
GeoJSONMultiPolygonSchema,
6066
type GeoJSON2DMultiPolygon,
6167
type GeoJSON3DMultiPolygon,
@@ -66,6 +72,7 @@ export {
6672
GeoJSON2DPointSchema,
6773
GeoJSON3DPointSchema,
6874
GeoJSONPointGenericSchema,
75+
type GeoJSONPointGenericSchemaType,
6976
GeoJSONPointSchema,
7077
type GeoJSON2DPoint,
7178
type GeoJSON3DPoint,
@@ -76,6 +83,7 @@ export {
7683
GeoJSON2DPolygonSchema,
7784
GeoJSON3DPolygonSchema,
7885
GeoJSONPolygonGenericSchema,
86+
type GeoJSONPolygonGenericSchemaType,
7987
GeoJSONPolygonSchema,
8088
type GeoJSON2DPolygon,
8189
type GeoJSON3DPolygon,
@@ -106,6 +114,7 @@ export {
106114
GeoJSON2DFeatureSchema,
107115
GeoJSON3DFeatureSchema,
108116
GeoJSONFeatureGenericSchema,
117+
type GeoJSONFeatureGenericSchemaType,
109118
type GeoJSONFeatureGeneric,
110119
GeoJSONFeatureSchema,
111120
type GeoJSON2DFeature,
@@ -117,6 +126,7 @@ export {
117126
GeoJSON2DFeatureCollectionSchema,
118127
GeoJSON3DFeatureCollectionSchema,
119128
GeoJSONFeatureCollectionGenericSchema,
129+
type GeoJSONFeatureCollectionGenericSchemaType,
120130
type GeoJSONFeatureCollectionGeneric,
121131
GeoJSONFeatureCollectionSchema,
122132
type GeoJSON2DFeatureCollection,
@@ -128,6 +138,7 @@ export {
128138
GeoJSON2DSchema,
129139
GeoJSON3DSchema,
130140
GeoJSONGenericSchema,
141+
type GeoJSONGenericSchemaType,
131142
type GeoJSONGeneric,
132143
GeoJSONSchema,
133144
type GeoJSON,

0 commit comments

Comments
 (0)