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.
- package/index.d.ts +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
|
|