@dra2020/dra-types 1.8.22 → 1.8.23

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/dist/layer.d.ts CHANGED
@@ -28,6 +28,7 @@ export interface UserLayerRef {
28
28
  strokeOpacity: number;
29
29
  fillColor: string;
30
30
  fillOpacity: number;
31
+ lineWidth?: number;
31
32
  }
32
33
  export declare type UserLayerRefIndex = {
33
34
  [id: string]: UserLayerRef;
package/lib/layer.ts CHANGED
@@ -33,6 +33,7 @@ export interface UserLayerRef
33
33
  strokeOpacity: number,
34
34
  fillColor: string,
35
35
  fillOpacity: number,
36
+ lineWidth?: number,
36
37
  }
37
38
 
38
39
  export type UserLayerRefIndex = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dra2020/dra-types",
3
- "version": "1.8.22",
3
+ "version": "1.8.23",
4
4
  "description": "Shared types used between client, server and tools.",
5
5
  "main": "dist/dra-types.js",
6
6
  "types": "./dist/all.d.ts",