@dra2020/dra-types 1.0.3 → 1.0.4

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.
@@ -21,3 +21,10 @@ export interface UserLikes {
21
21
  id?: string;
22
22
  [aid: string]: Like | string;
23
23
  }
24
+ export interface SplitBlock {
25
+ id?: string;
26
+ state: string;
27
+ datasource: string;
28
+ geoid: string;
29
+ blocks: string[];
30
+ }
package/lib/dra-types.ts CHANGED
@@ -37,3 +37,12 @@ export interface UserLikes
37
37
  id?: string;
38
38
  [aid: string]: Like | string; // Really just Like but make TypeScript happy
39
39
  }
40
+
41
+ export interface SplitBlock
42
+ {
43
+ id?: string;
44
+ state: string;
45
+ datasource: string;
46
+ geoid: string;
47
+ blocks: string[];
48
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dra2020/dra-types",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "description": "Shared types used between client and server.",
5
5
  "main": "dist/dra-types.js",
6
6
  "types": "./dist/all.d.ts",