jmapcloud-ng-core-types 0.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.prettierrc +10 -0
- package/.vscode/settings.json +24 -0
- package/README.md +12 -0
- package/_config.yml +1 -0
- package/all-enums.ts +286 -0
- package/index.ts +1003 -0
- package/package.json +42 -0
- package/public/core.d.ts +12255 -0
- package/public/jmap/ajax.d.ts +31 -0
- package/public/jmap/date.d.ts +17 -0
- package/public/jmap/extension.d.ts +216 -0
- package/public/jmap/features.d.ts +32 -0
- package/public/jmap/form.d.ts +590 -0
- package/public/jmap/geocoding.d.ts +33 -0
- package/public/jmap/geometry.d.ts +44 -0
- package/public/jmap/language.d.ts +38 -0
- package/public/jmap/layer.d.ts +591 -0
- package/public/jmap/main.d.ts +30 -0
- package/public/jmap/map-context.d.ts +197 -0
- package/public/jmap/map.d.ts +622 -0
- package/public/jmap/mouseover.d.ts +62 -0
- package/public/jmap/photos.d.ts +43 -0
- package/public/jmap/project.d.ts +45 -0
- package/public/jmap/query.d.ts +41 -0
- package/public/jmap/selection.d.ts +25 -0
- package/public/jmap/server.d.ts +79 -0
- package/public/jmap/startup-options.d.ts +500 -0
- package/public/jmap/ui.d.ts +13 -0
- package/public/jmap/user.d.ts +96 -0
- package/tsconfig.json +25 -0
- package/tslint.json +86 -0
package/package.json
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "jmapcloud-ng-core-types",
|
|
3
|
+
"version": "0.0.4",
|
|
4
|
+
"description": "JMap Cloud specific version of JMap Cloud NG Core types and interfaces",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"test": "echo \"Error: no test specified\" && exit 1",
|
|
8
|
+
"pub": "export NODE_ENV='production'; gulp publish --gulpfile build/gulpfile.js;",
|
|
9
|
+
"copy": "export NODE_ENV='production'; gulp copy --gulpfile build/gulpfile.js;",
|
|
10
|
+
"commit-doc": "export NODE_ENV='production'; gulp commit-doc --gulpfile build/gulpfile.js;",
|
|
11
|
+
"doc-test": "export DOC_DIR='./docs/latest'; gulp typedoc --gulpfile build/gulpfile.js;",
|
|
12
|
+
"copy-latest": "gulp copy-latest --gulpfile build/gulpfile.js;"
|
|
13
|
+
},
|
|
14
|
+
"repository": {
|
|
15
|
+
"type": "git",
|
|
16
|
+
"url": "git@github.com:k2geospatial/jmapcloud-ng-core-types.git"
|
|
17
|
+
},
|
|
18
|
+
"keywords": [
|
|
19
|
+
"k2",
|
|
20
|
+
"geospatial",
|
|
21
|
+
"jmapcloud",
|
|
22
|
+
"ng-core"
|
|
23
|
+
],
|
|
24
|
+
"author": "K2Geospatial",
|
|
25
|
+
"license": "MIT",
|
|
26
|
+
"bugs": {
|
|
27
|
+
"url": "https://github.com/k2geospatial/jmapcloud-ng-core-types/issues"
|
|
28
|
+
},
|
|
29
|
+
"homepage": "https://github.com/k2geospatial/jmapcloud-ng-core-types#readme",
|
|
30
|
+
"devDependencies": {
|
|
31
|
+
"gulp": "^4.0.2",
|
|
32
|
+
"gulp-typedoc": "^2.2.2",
|
|
33
|
+
"typedoc": "^0.15.0"
|
|
34
|
+
},
|
|
35
|
+
"dependencies": {
|
|
36
|
+
"@types/geojson": "^7946.0.7",
|
|
37
|
+
"@types/mapbox-gl": "^1.12.0",
|
|
38
|
+
"@types/react": "^16.8.3",
|
|
39
|
+
"geojson": "^0.5.0",
|
|
40
|
+
"redux": "^4.0.0"
|
|
41
|
+
}
|
|
42
|
+
}
|