bus-mj 1.2.2 → 1.2.3

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 -1
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -6,7 +6,8 @@ declare module 'bus-mj' {
6
6
  export function getAllBus(): [{
7
7
  label: string,
8
8
  color: string,
9
- band: string[]
9
+ band: string[],
10
+ board: string | null
10
11
  }];
11
12
  export function busAt(busId: string): {label: string,color: string,band: string[], board: string | null};
12
13
  export function getAllStop(): { key: string, value: string }[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bus-mj",
3
- "version": "1.2.2",
3
+ "version": "1.2.3",
4
4
  "description": "package for BUS station in Mahajanga",
5
5
  "main": "index.js",
6
6
  "typings": "index.d.ts",