triangle-types 1.0.136 → 1.0.137

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.
@@ -1,7 +1,7 @@
1
1
  import { StateID } from "../regions/State.js";
2
2
  export declare class FederalCongress {
3
3
  readonly federal_congress_id: number;
4
- readonly redistrict_state_ids: StateID;
4
+ readonly redistrict_state_ids: StateID[];
5
5
  constructor(federal_congress: any);
6
6
  static is(federal_congress: any): federal_congress is FederalCongress;
7
7
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "triangle-types",
3
- "version": "1.0.136",
3
+ "version": "1.0.137",
4
4
  "main": "dist/src/index.js",
5
5
  "types": "dist/src/index.d.ts",
6
6
  "scripts": {
@@ -2,7 +2,7 @@ import { is_state_id, StateID } from "../regions/State"
2
2
 
3
3
  export class FederalCongress {
4
4
  readonly federal_congress_id : number
5
- readonly redistrict_state_ids : StateID
5
+ readonly redistrict_state_ids : StateID[]
6
6
 
7
7
  constructor(federal_congress : any) {
8
8
  if (!FederalCongress.is(federal_congress)) {