bus-mj 1.1.0 → 1.1.1

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.
Files changed (2) hide show
  1. package/index.d.ts +2 -2
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -1,9 +1,9 @@
1
1
  // index.d.ts
2
2
 
3
3
  declare module 'bus-mj' {
4
- export function getBus(): any; // Remplacez 'any' par le type approprié
4
+ export function getBus(arg1: string, arg2: string): any; // Remplacez 'any' par le type approprié
5
5
  export function getAllBus(): any; // Remplacez 'any' par le type approprié
6
6
  export function getAllStop(): any; // Remplacez 'any' par le type approprié
7
- export function getStop(): any; // Remplacez 'any' par le type approprié
7
+ export function getStop(arg1: number): any; // Remplacez 'any' par le type approprié
8
8
  }
9
9
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bus-mj",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "description": "package for BUS station in Mahajanga",
5
5
  "main": "index.js",
6
6
  "typings": "index.d.ts",