@mlightcad/libredwg-web 0.4.2 → 0.4.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.
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { Dwg_Color } from '../../types';
|
|
1
2
|
import { DwgPoint3D } from '../common';
|
|
2
3
|
export interface DwgHeader {
|
|
3
4
|
/**
|
|
@@ -56,7 +57,7 @@ export interface DwgHeader {
|
|
|
56
57
|
* 0 = BYBLOCK; 256 = BYLAYER
|
|
57
58
|
* Initial value: 256
|
|
58
59
|
*/
|
|
59
|
-
CECOLOR?:
|
|
60
|
+
CECOLOR?: Dwg_Color;
|
|
60
61
|
/**
|
|
61
62
|
* The linetype scaling for new objects relative to the LTSCALE command setting. A line created with
|
|
62
63
|
* CELTSCALE = 2 in a drawing with LTSCALE set to 0.5 would appear the same as a line created with
|
package/package.json
CHANGED