@dra2020/dra-types 1.0.5 → 1.0.6

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.
@@ -29,5 +29,5 @@ export interface SplitBlock {
29
29
  blocks: string[];
30
30
  }
31
31
  export declare type DistrictToSplitBlock = {
32
- [nDistrict: number]: SplitBlock;
32
+ [nDistrict: number]: SplitBlock[];
33
33
  };
package/lib/dra-types.ts CHANGED
@@ -47,4 +47,4 @@ export interface SplitBlock
47
47
  blocks: string[];
48
48
  }
49
49
 
50
- export type DistrictToSplitBlock = { [nDistrict: number]: SplitBlock };
50
+ export type DistrictToSplitBlock = { [nDistrict: number]: SplitBlock[] };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dra2020/dra-types",
3
- "version": "1.0.5",
3
+ "version": "1.0.6",
4
4
  "description": "Shared types used between client and server.",
5
5
  "main": "dist/dra-types.js",
6
6
  "types": "./dist/all.d.ts",