runbir-tools 1.0.7 → 1.0.9

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "runbir-tools",
3
3
  "private": false,
4
- "version": "1.0.7",
4
+ "version": "1.0.9",
5
5
  "type": "module",
6
6
  "main": "./dist/runbir-tools.umd.js",
7
7
  "module": "./dist/runbir-tools.es.js",
@@ -28,9 +28,8 @@
28
28
  "coverage": "vitest run --coverage"
29
29
  },
30
30
  "peerDependencies": {
31
- "axios": "^1.9.0",
32
31
  "vue": "^3.5.13",
33
- "vue-router": "^4.5.1"
32
+ "ol": "^10.6.1"
34
33
  },
35
34
  "devDependencies": {
36
35
  "@eslint/js": "^9.28.0",
@@ -58,7 +57,9 @@
58
57
  "vite-plugin-eslint": "^1.8.1",
59
58
  "vitest": "^3.2.3",
60
59
  "vue-eslint-parser": "^9.4.3",
61
- "vue-tsc": "^2.2.8"
60
+ "vue-tsc": "^2.2.8",
61
+ "axios": "^1.9.0",
62
+ "vue-router": "^4.5.1"
62
63
  },
63
64
  "lint-staged": {
64
65
  "*.{js,ts,vue}": [
@@ -73,7 +74,6 @@
73
74
  "node": ">=22.0.0"
74
75
  },
75
76
  "dependencies": {
76
- "@turf/turf": "^7.2.0",
77
- "ol": "^10.6.1"
77
+ "@turf/turf": "^7.2.0"
78
78
  }
79
79
  }
@@ -2,8 +2,8 @@ import type { ViewOptions } from 'ol/View';
2
2
  interface Options {
3
3
  view: ViewOptions;
4
4
  layers: Array<any>;
5
- controls: any;
6
- event: any;
5
+ controls?: any;
6
+ event?: any;
7
7
  }
8
8
  type __VLS_Props = {
9
9
  options: Options;
@@ -1,2 +1,2 @@
1
- export declare function getTyphoonList(): Promise<import("axios").AxiosResponse<any, any>>;
2
- export declare function getTyphoonPath(id: number): Promise<import("axios").AxiosResponse<any, any>>;
1
+ export declare function getTyphoonList(): Promise<import("axios").AxiosResponse<any, any, {}>>;
2
+ export declare function getTyphoonPath(id: number): Promise<import("axios").AxiosResponse<any, any, {}>>;