vjcad 1.0.8 → 1.0.9

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/types.d.ts CHANGED
@@ -2731,6 +2731,110 @@ declare class Edges {
2731
2731
  fromDb(dbData: any): void;
2732
2732
  }
2733
2733
 
2734
+ /**
2735
+ * 边界检测选项
2736
+ */
2737
+ interface BoundaryDetectorOptions {
2738
+ /** 间隙公差(类似 HPGAPTOL) */
2739
+ gapTolerance: number;
2740
+ /** 是否检测孤岛 */
2741
+ detectIslands: boolean;
2742
+ /** 孤岛检测模式:'normal' | 'outer' | 'ignore' */
2743
+ islandMode: 'normal' | 'outer' | 'ignore';
2744
+ /** 最大追踪步数(防止无限循环) */
2745
+ maxTraceSteps: number;
2746
+ /** 是否只使用视口内的实体 */
2747
+ useViewportClipping: boolean;
2748
+ }
2749
+ /**
2750
+ * 边界检测结果
2751
+ */
2752
+ interface BoundaryDetectionResult {
2753
+ /** 是否成功 */
2754
+ success: boolean;
2755
+ /** 错误信息 */
2756
+ errorMessage?: string;
2757
+ /** 外部边界 */
2758
+ outerBoundary: Edge | null;
2759
+ /** 孤岛边界(内部孔洞) */
2760
+ islands: Edge[];
2761
+ /** 所有边界的 Edges 集合(可直接用于 HatchEnt) */
2762
+ edges: Edges | null;
2763
+ }
2764
+ /**
2765
+ * 边界检测器类
2766
+ * 基于 ODA GeLoopsBuilder 算法原理实现
2767
+ */
2768
+ declare class BoundaryDetector {
2769
+ /** 检测选项 */
2770
+ private options;
2771
+ /**
2772
+ * 构造函数
2773
+ * @param options - 检测选项
2774
+ */
2775
+ constructor(options?: Partial<BoundaryDetectorOptions>);
2776
+ /**
2777
+ * 从内部点检测边界
2778
+ * @param pickPoint - 拾取点(世界坐标系)
2779
+ * @param entities - 可选的实体数组
2780
+ * @returns 边界检测结果
2781
+ */
2782
+ detectBoundary(pickPoint: Point2D$1, entities?: EntityBase[]): BoundaryDetectionResult;
2783
+ /**
2784
+ * 创建失败结果
2785
+ */
2786
+ private createFailResult;
2787
+ /**
2788
+ * 使用 WASM 进行边界检测
2789
+ */
2790
+ private detectBoundaryWasm;
2791
+ /**
2792
+ * 从循环数据构建边界检测结果
2793
+ */
2794
+ private buildResult;
2795
+ /**
2796
+ * 将循环数据转换为 Edge 对象
2797
+ * 注意:圆可以由2个半圆弧表示(2个点),所以最少需要2个点
2798
+ */
2799
+ private loopToEdge;
2800
+ /**
2801
+ * JavaScript 回退实现
2802
+ */
2803
+ private detectBoundaryJS;
2804
+ /**
2805
+ * 获取候选实体
2806
+ * 支持基础几何实体和容器实体(块、组、自定义实体)
2807
+ */
2808
+ private getCandidateEntities;
2809
+ /**
2810
+ * 递归收集几何实体
2811
+ * @param entity - 当前实体
2812
+ * @param result - 结果数组
2813
+ * @param depth - 递归深度(防止无限递归)
2814
+ */
2815
+ private collectGeometryEntities;
2816
+ /**
2817
+ * 生成曲线信息数组
2818
+ */
2819
+ private generateCurveInfos;
2820
+ /**
2821
+ * 将实体转换为曲线信息
2822
+ */
2823
+ private entityToCurves;
2824
+ /**
2825
+ * 创建曲线信息
2826
+ */
2827
+ private createCurveInfo;
2828
+ /**
2829
+ * 计算曲线长度
2830
+ */
2831
+ private getCurveLength;
2832
+ /**
2833
+ * 计算曲线包围盒
2834
+ */
2835
+ private getCurveBounds;
2836
+ }
2837
+
2734
2838
  /**
2735
2839
  * 对象捕捉点类
2736
2840
  *
@@ -4362,6 +4466,18 @@ interface FitPointsOptions {
4362
4466
  startTangent?: [number, number];
4363
4467
  endTangent?: [number, number];
4364
4468
  }
4469
+ interface FitPointsResult {
4470
+ controlPoints: number[][];
4471
+ knots: number[];
4472
+ }
4473
+ /**
4474
+ * 将拟合点转换为三次 B-spline 的控制点和节点向量
4475
+ *
4476
+ * @param fitPoints 拟合点 [[x,y], ...] ,至少 2 个
4477
+ * @param options 可选:参数化方式、起/终切线
4478
+ * @returns 控制点数组和节点向量;输入无效时返回 null
4479
+ */
4480
+ declare function fitPointsToControlPoints(fitPoints: number[][], options?: FitPointsOptions): FitPointsResult | null;
4365
4481
 
4366
4482
  /**
4367
4483
  * 检查是否为类型化数组视图
@@ -18371,6 +18487,142 @@ declare function refreshRemainModelEntities(): any;
18371
18487
  */
18372
18488
  declare function regen(): void;
18373
18489
 
18490
+ /**
18491
+ * 自适应渲染配置管理器
18492
+ *
18493
+ * 根据图形数据量动态调整渲染参数,优化大型图纸的渲染性能。
18494
+ *
18495
+ * 功能:
18496
+ * 1. 根据圆/圆弧/椭圆数量动态调整离散点数
18497
+ * 2. 根据渲染时的线型段数动态调整最大线型段数限制
18498
+ *
18499
+ * @public
18500
+ */
18501
+ declare class AdaptiveRenderingConfig {
18502
+ /** 曲线实体数量阈值,低于此值不调整参数 */
18503
+ static curveEntityThreshold: number;
18504
+ /** 每多少个实体减少一次离散数 */
18505
+ static curveReductionStep: number;
18506
+ /** 每次减少的比例 (5%) */
18507
+ static curveReductionRate: number;
18508
+ /** 最小离散段数 */
18509
+ static minCurveSegments: number;
18510
+ /** 默认圆形离散段数 */
18511
+ static defaultCircleSegments: number;
18512
+ /** 默认自定义线型绘制时的高精度离散段数 */
18513
+ static defaultHighPrecisionSegments: number;
18514
+ /** 初始最大线型段数 */
18515
+ static initialMaxLinetypeSegments: number;
18516
+ /** 触发调整的线型段数阈值 */
18517
+ static linetypeThreshold: number;
18518
+ /** 每多少段减少一次限制 */
18519
+ static linetypeReductionStep: number;
18520
+ /** 每次减少的比例 (5%) */
18521
+ static linetypeReductionRate: number;
18522
+ /** 最小线型段数限制 */
18523
+ static minLinetypeSegments: number;
18524
+ /** 圆弧类实体数量 */
18525
+ private static _curveEntityCount;
18526
+ /** 当前渲染周期的线型段数累计 */
18527
+ private static _linetypeSegmentCount;
18528
+ /** 动态计算的曲线离散段数 */
18529
+ private static _dynamicCurveSegments;
18530
+ /** 动态计算的最大线型段数限制 */
18531
+ private static _dynamicMaxLinetypeSegments;
18532
+ /**
18533
+ * 设置曲线实体数量并更新动态参数
18534
+ * @param count - 圆/圆弧/椭圆实体总数
18535
+ */
18536
+ static setCurveEntityCount(count: number): void;
18537
+ /**
18538
+ * 获取当前曲线实体数量
18539
+ */
18540
+ static getCurveEntityCount(): number;
18541
+ /**
18542
+ * 更新动态曲线离散段数
18543
+ */
18544
+ private static updateDynamicCurveSegments;
18545
+ /**
18546
+ * 计算动态离散段数
18547
+ * @param baseSegments - 基础离散段数
18548
+ * @returns 调整后的离散段数(保证是4的倍数,用于圆形四象限对称绘制)
18549
+ */
18550
+ private static calculateDynamicSegments;
18551
+ /**
18552
+ * 获取动态圆形离散段数
18553
+ * @returns 当前应使用的圆形离散段数
18554
+ */
18555
+ static getDynamicCircleSegments(): number;
18556
+ /**
18557
+ * 获取动态高精度离散段数(用于自定义线型绘制)
18558
+ * @returns 当前应使用的高精度离散段数
18559
+ */
18560
+ static getDynamicHighPrecisionSegments(): number;
18561
+ /**
18562
+ * 获取动态椭圆离散段数
18563
+ * @returns 当前应使用的椭圆离散段数
18564
+ */
18565
+ static getDynamicEllipseSegments(): number;
18566
+ /**
18567
+ * 重置线型段数统计(在渲染周期开始时调用)
18568
+ */
18569
+ static resetLinetypeSegmentCount(): void;
18570
+ /**
18571
+ * 累加线型段数
18572
+ * @param count - 本次绘制的线型段数
18573
+ */
18574
+ static incrementLinetypeSegments(count?: number): void;
18575
+ /**
18576
+ * 获取当前渲染周期的线型段数
18577
+ */
18578
+ static getLinetypeSegmentCount(): number;
18579
+ /**
18580
+ * 更新最大线型段数限制(在渲染周期结束时调用)
18581
+ */
18582
+ static updateMaxLinetypeSegments(): void;
18583
+ /**
18584
+ * 获取当前最大线型段数限制
18585
+ * @returns 动态计算的最大线型段数
18586
+ */
18587
+ static getMaxLinetypeSegments(): number;
18588
+ /**
18589
+ * 配置曲线实体参数
18590
+ * @param config - 配置对象
18591
+ */
18592
+ static configureCurveParams(config: {
18593
+ threshold?: number;
18594
+ reductionStep?: number;
18595
+ reductionRate?: number;
18596
+ minSegments?: number;
18597
+ defaultCircleSegments?: number;
18598
+ defaultHighPrecisionSegments?: number;
18599
+ }): void;
18600
+ /**
18601
+ * 配置线型段数参数
18602
+ * @param config - 配置对象
18603
+ */
18604
+ static configureLinetypeParams(config: {
18605
+ initialMax?: number;
18606
+ threshold?: number;
18607
+ reductionStep?: number;
18608
+ reductionRate?: number;
18609
+ minSegments?: number;
18610
+ }): void;
18611
+ /**
18612
+ * 重置所有统计和动态参数到初始状态
18613
+ */
18614
+ static reset(): void;
18615
+ /**
18616
+ * 获取当前状态的调试信息
18617
+ */
18618
+ static getDebugInfo(): {
18619
+ curveEntityCount: number;
18620
+ dynamicCurveSegments: number;
18621
+ linetypeSegmentCount: number;
18622
+ dynamicMaxLinetypeSegments: number;
18623
+ };
18624
+ }
18625
+
18374
18626
  /**
18375
18627
  * 字体加载器
18376
18628
  * 负责加载矢量字体文件
@@ -30718,6 +30970,22 @@ interface IDiffResult {
30718
30970
  /** Flat list for UI direct consumption (paging / filtering) */
30719
30971
  allItems: IDiffListItem[];
30720
30972
  }
30973
+ declare class DiffUtils {
30974
+ /**
30975
+ * Compare two webcad toDb() outputs and return structured diff.
30976
+ * Accepts either JSON string or plain object.
30977
+ *
30978
+ * Performs direct TS-level comparison mirroring the entity-matching logic
30979
+ * used by filterUnmodifiedEntitiesForDiff in the save flow.
30980
+ */
30981
+ static diff(oldInput: string | object, newInput: string | object): Promise<IDiffResult>;
30982
+ /**
30983
+ * Shortcut: diff current document against its original (opened) state.
30984
+ * Requires that the document was opened from server and originalJson exists.
30985
+ * Returns null if no baseline is available.
30986
+ */
30987
+ static diffCurrentDoc(): Promise<IDiffResult | null>;
30988
+ }
30721
30989
 
30722
30990
  /**
30723
30991
  * DiffPanel public interface
@@ -52759,6 +53027,169 @@ declare class AttributeTextProcessor {
52759
53027
  static applyLineTypeScaleInheritance(newEntity: TextEnt, originalEntity: TextEnt, attributeValue: AttributeObject, insertEntity: InsertEnt): void;
52760
53028
  }
52761
53029
 
53030
+ /**
53031
+ * 将 Uint8Array 转换为 base64 字符串
53032
+ * @param bytes - 字节数组
53033
+ * @returns base64 编码的字符串
53034
+ */
53035
+ declare function uint8ArrayToBase64(bytes: Uint8Array): string;
53036
+ /**
53037
+ * 将 base64 字符串转换为 Uint8Array
53038
+ * @param base64 - base64 编码的字符串
53039
+ * @returns 字节数组
53040
+ */
53041
+ declare function base64ToUint8Array(base64: string): Uint8Array;
53042
+ /**
53043
+ * 解压服务端符号数据
53044
+ * 支持 JSON 格式(旧数据兼容)和 gzip 压缩后 base64 编码的数据
53045
+ * @param data - base64 编码的压缩数据,或原始 JSON 字符串
53046
+ * @returns 解压后的 vcad JSON 字符串,失败返回 null
53047
+ */
53048
+ declare function decompressSymbolData(data: string): Promise<string | null>;
53049
+ /**
53050
+ * 压缩符号数据
53051
+ * @param vcadData - vcad JSON 字符串
53052
+ * @param compressionLevel - 压缩级别(1-9),默认 6
53053
+ * @returns 压缩后的字节数组,失败返回 null
53054
+ */
53055
+ declare function compressSymbolData(vcadData: string, compressionLevel?: number): Promise<Uint8Array | null>;
53056
+ /**
53057
+ * 构建符号的 vcad 数据
53058
+ * 收集实体依赖(图层、线型、文字样式、块定义、填充图案),导出为 vcad 格式
53059
+ * @param entities - 要保存的实体数组
53060
+ * @param clearSourceInfo - 是否清空来源图信息(objectId)
53061
+ * @returns vcad JSON 字符串
53062
+ */
53063
+ declare function buildSymbolVcadData(entities: EntityBase[], clearSourceInfo?: boolean): Promise<string>;
53064
+ /**
53065
+ * 合并符号到当前文档
53066
+ * 合并图层、线型、文字样式、块定义,克隆实体并应用变换
53067
+ * @param symbolDoc - 符号文档对象
53068
+ * @param insertPoint - 插入点
53069
+ * @param basePoint - 符号基点 [x, y]
53070
+ * @param scale - 缩放比例
53071
+ * @param rotation - 旋转角度(度)
53072
+ * @param clearSourceInfo - 是否清空来源图信息
53073
+ * @returns 添加的实体数组
53074
+ */
53075
+ declare function mergeSymbolToDocument(symbolDoc: CadDocument, insertPoint: Point2D$1, basePoint: [number, number], scale?: number, rotation?: number, clearSourceInfo?: boolean): EntityBase[];
53076
+ /**
53077
+ * 解析 vcad 数据为 CadDocument 对象
53078
+ * @param vcadData - vcad JSON 字符串
53079
+ * @returns CadDocument 对象
53080
+ */
53081
+ declare function parseSymbolVcadData(vcadData: string): Promise<CadDocument>;
53082
+ /**
53083
+ * 从实体数组生成缩略图
53084
+ * @param entities - 要生成缩略图的实体数组
53085
+ * @param width - 缩略图宽度(默认 128)
53086
+ * @param height - 缩略图高度(默认 128)
53087
+ * @param backgroundColor - 背景颜色(默认 0x2d3748 深灰色)
53088
+ * @returns base64 编码的 PNG 图像数据
53089
+ */
53090
+ declare function generateThumbnailFromEntities(entities: EntityBase[], width?: number, height?: number, backgroundColor?: number): Promise<string>;
53091
+ /**
53092
+ * 从 vcad 数据生成缩略图
53093
+ * @param vcadData - vcad JSON 字符串
53094
+ * @param width - 缩略图宽度(默认 128)
53095
+ * @param height - 缩略图高度(默认 128)
53096
+ * @param backgroundColor - 背景颜色(默认 0x2d3748 深灰色)
53097
+ * @returns base64 编码的 PNG 图像数据
53098
+ */
53099
+ declare function generateThumbnailFromVcadData(vcadData: string, width?: number, height?: number, backgroundColor?: number): Promise<string>;
53100
+ /**
53101
+ * 交互式插入符号的选项
53102
+ */
53103
+ interface InsertSymbolInteractiveOptions {
53104
+ /** 是否允许缩放(默认 true) */
53105
+ allowScale?: boolean;
53106
+ /** 是否允许旋转(默认 true) */
53107
+ allowRotation?: boolean;
53108
+ /** 是否清空来源图信息(默认 false) */
53109
+ clearSourceInfo?: boolean;
53110
+ /** 初始缩放比例(默认 1) */
53111
+ initialScale?: number;
53112
+ /** 初始旋转角度,单位:度(默认 0) */
53113
+ initialRotation?: number;
53114
+ }
53115
+ /**
53116
+ * 交互式插入符号
53117
+ * 通过 getPoint 交互获取插入点、缩放、旋转参数
53118
+ * @param vcadData - 符号的 vcad 数据(JSON 字符串)
53119
+ * @param basePoint - 符号基点 [x, y]
53120
+ * @param options - 可选参数
53121
+ * @returns 插入的实体数组,取消返回 null
53122
+ */
53123
+ declare function insertSymbolInteractive(vcadData: string, basePoint: [number, number], options?: InsertSymbolInteractiveOptions): Promise<EntityBase[] | null>;
53124
+ /**
53125
+ * 符号交互式插入器
53126
+ * 封装交互式插入的状态和流程
53127
+ *
53128
+ * @example
53129
+ * ```typescript
53130
+ * // 示例1:解析后修改实体再插入
53131
+ * const symbolDoc = await parseSymbolVcadData(vcadData);
53132
+ * const modelBlock = symbolDoc.blocks.itemByName("*Model");
53133
+ * for (const entity of modelBlock.items) {
53134
+ * entity.color = 1; // 红色
53135
+ * }
53136
+ * const inserter = new SymbolInteractiveInserter(symbolDoc, [0, 0]);
53137
+ * const entities = await inserter.execute();
53138
+ *
53139
+ * // 示例2:固定缩放2倍、旋转30度插入(不允许用户修改)
53140
+ * const inserter2 = new SymbolInteractiveInserter(
53141
+ * symbolDoc, [0, 0],
53142
+ * false, false, false, // 不允许缩放和旋转
53143
+ * 2, 30 // 初始缩放2倍,旋转30度
53144
+ * );
53145
+ * const entities2 = await inserter2.execute();
53146
+ * ```
53147
+ * @public
53148
+ */
53149
+ declare class SymbolInteractiveInserter {
53150
+ /** 符号文档对象 */
53151
+ symbolDoc: CadDocument;
53152
+ /** 符号基点 */
53153
+ basePoint: [number, number];
53154
+ /** 是否允许缩放 */
53155
+ allowScale: boolean;
53156
+ /** 是否允许旋转 */
53157
+ allowRotation: boolean;
53158
+ /** 是否清空来源图信息 */
53159
+ clearSourceInfo: boolean;
53160
+ /** 初始/固定缩放比例 */
53161
+ initialScale: number;
53162
+ /** 初始/固定旋转角度(度) */
53163
+ initialRotation: number;
53164
+ private insertPoint;
53165
+ private scale;
53166
+ private rotationAngle;
53167
+ private previewEntities;
53168
+ /**
53169
+ * 创建符号交互式插入器
53170
+ * @param symbolDoc - 符号文档对象(通过 parseSymbolVcadData 解析得到)
53171
+ * @param basePoint - 符号基点 [x, y]
53172
+ * @param allowScale - 是否允许缩放(默认 true)
53173
+ * @param allowRotation - 是否允许旋转(默认 true)
53174
+ * @param clearSourceInfo - 是否清空来源图信息(默认 false)
53175
+ * @param initialScale - 初始缩放比例(默认 1)
53176
+ * @param initialRotation - 初始旋转角度,单位:度(默认 0)
53177
+ */
53178
+ constructor(symbolDoc: CadDocument, basePoint: [number, number], allowScale?: boolean, allowRotation?: boolean, clearSourceInfo?: boolean, initialScale?: number, initialRotation?: number);
53179
+ execute(): Promise<EntityBase[] | null>;
53180
+ private mergeBlockDefinitions;
53181
+ private createPreviewEntities;
53182
+ private registerPreview;
53183
+ private clearPreview;
53184
+ private setPreviewTransform;
53185
+ private createInsertPointPreviewCallback;
53186
+ private createScalePreviewCallback;
53187
+ private createRotationPreviewCallback;
53188
+ private stepGetInsertPoint;
53189
+ private stepGetScale;
53190
+ private stepGetRotation;
53191
+ }
53192
+
52762
53193
  /** 边界框类型 */
52763
53194
  interface Bounds {
52764
53195
  minX: number;
@@ -52830,6 +53261,45 @@ declare function extractTables(options?: TableExtractOptions): TableExtractResul
52830
53261
  */
52831
53262
  declare function getTableExtractLayers(): string[];
52832
53263
 
53264
+ type ExportImageTheme = "dark" | "light";
53265
+ interface IExportImageOptions {
53266
+ /** Entities whose bounds define the exported region. Defaults to all. */
53267
+ entities?: EntityBase[];
53268
+ /** Output image width in pixels. Defaults to 1920. */
53269
+ width?: number;
53270
+ /** Output image height. Auto-calculated from entity bounds when omitted. */
53271
+ height?: number;
53272
+ /** Background theme. Defaults to "light". */
53273
+ theme?: ExportImageTheme;
53274
+ /** Transparent background (PNG only). Defaults to true. */
53275
+ transparent?: boolean;
53276
+ /** Image format. Defaults to "image/png". */
53277
+ mimeType?: "image/png" | "image/jpeg";
53278
+ /** JPEG quality (0–1). */
53279
+ quality?: number;
53280
+ /** Downloaded file name. Defaults to "export.png". */
53281
+ fileName?: string;
53282
+ }
53283
+ interface IExportImageResult {
53284
+ success: boolean;
53285
+ blob?: Blob;
53286
+ dataUrl?: string;
53287
+ error?: string;
53288
+ }
53289
+ /**
53290
+ * Render entities to an image via an off-screen PreviewView.
53291
+ *
53292
+ * The full document is loaded so every entity type is drawn correctly.
53293
+ * When `entities` is a subset the view is zoomed to their bounds.
53294
+ * The internal canvas never exceeds RENDER_MAX; the output is scaled
53295
+ * to the requested dimensions afterwards.
53296
+ */
53297
+ declare function exportEntitiesToImage(options?: IExportImageOptions): Promise<IExportImageResult>;
53298
+ /**
53299
+ * Export and trigger a browser download.
53300
+ */
53301
+ declare function exportEntitiesToImageAndDownload(options?: IExportImageOptions): Promise<boolean>;
53302
+
52833
53303
  declare const tea: {
52834
53304
  utf8Encode: (str: any) => any;
52835
53305
  utf8Decode: (bs: any, n: any) => any;
@@ -54864,8 +55334,8 @@ declare const palettePlotIcons: Record<string, string>;
54864
55334
  */
54865
55335
 
54866
55336
 
54867
- export { ANGLE_0, ANGLE_135, ANGLE_180, ANGLE_225, ANGLE_270, ANGLE_315, ANGLE_360, ANGLE_45, ANGLE_90, ANSI31_PATTERN, ANSI37_PATTERN, AboutCommand, ActiveButton, ActivityBar, ActivityBarElement, AddEntitiesUndoCommand, AdvancedEditMenu, AliasListPalette, AlignedDimensionEnt, AlignmentTextCommand, AngleBlockCommand, AngleDimensionEnt, AngleHatchCommand, AngleTextCommand, AntiAliasSetvar, AppDisableIconSvg, AppIconSvg, AppearanceMenu, ArcCSACommand, ArcCSECommand, ArcCSLCommand, ArcCircleProperties, ArcCommand, ArcDimensionEnt, ArcDrawer, ArcEnt, ArcModifyUndoCommand, ArcSCACommand, ArcSCECommand, ArcSCLCommand, ArcSEACommand, ArcSEDCommand, ArcSERCommand, ArcSymbolType, AreaCalculationCollection, AreaCalculationElement, ArrowRenderer, ArrowTypeEnum, AttributeTextProcessor, AutoComplete, AutoCompleteElement, AutoComplteRow, AutoComplteRowElement, BOOLEAN_OPERATORS, BSplineConstructor, BaseDialogComponent, BaseGraphicsProperties, BaseMessage, BasePanelComponent, BasicEditMenu, BezierEnt, BlockAddUndoCommand, BlockCommand, BlockDefinition, BlockModifyUndoCommand, BlockNameDialog, BlockRedefineUndoCommand, BlockReference, BlockRemoveUndoCommand, BlockSortUndoCommand, Blocks, BlocksPalette, BottomBar, BoundingBox, BoundingBoxCommand, BoxCommand, BoxModifyUndoCommand, BranchCreateDialog, BranchMergeDialog, BucketEntityRenderer, BulgePoint, BulgePoints, BurstTextCommand, ButtonEle, CLayerSetvar, CadDocument, CadEventEmitter, CadEventManager, CadEvents, CadGraphics, CadMapOverlay, CadPatternDef, CanvasController, CeColorSetvar, CenterMarker, ChangeColorCommand, ChangeLTypeCommand, ChangeLTypeScaleCommand, ChangeLayerCommand, ChangeLineWeightCommand, ChangeLineWeightDialog, ChangeTranspCommand, Circle2PCommand, Circle3PCommand, CircleCommand, CircleDiameterCommand, CircleDrawer, CircleEnt, CircleMarker, CircleModifyUndoCommand, CircleTTRCommand, CircleTTTCommand, ClipMode, ClipRegionCommand, ClipboardObj, CloseCommand, CloseXCommand, ColorConverter, ColorDialogOptions, ColorPanelDialog, CommandAlias, CommandAliasManager, CommandDefinition, CommandLine, CommandListPalette, CommandOptions, CommandRegistry, CommandResult, ConflictResolutionDialog, ContextMenu, ContextMenuAction, ContextMenuItem, ContinueDimensionCommand, ControlPoint, ControlPoints, CoordinateAxesDraw, CoordinateSystemIndicatorDraw, CoordinateSystemType, CoordinateTransform, CoordsBar, CoordsPalette, CopyBaseCommand, CopyClipCommand, CopyCommand, CornerInputHandler, CornerInputOptions, CornerSelectionHandler, CountBlockCommand, CountTextCommand, CreateAlignedDimensionCommand, CreateAngleDimensionCommand, CreateArcLengthDimensionCommand, CreateDiametricDimensionCommand, CreateLinearDimensionCommand, CreateMLeaderCommand, CreateMenu, CreateOrdinateDimensionCommand, CreateRadialDimensionCommand, CreateSymbolCommand, CrosshairCursorDraw, CtbPalette, CurrentLayerUndoCommand, CustomEntityBase, CustomEntityRegistry, CutBaseCommand, CutClipCommand, CutRecCommand, DLineCommand, DataBrowserCommand, DataToDrawCommand, DbArc, DbBackgroundConfig, DbBlock, DbBlockRef, DbBlocks, DbBox, DbBulgePoint, DbBulgePoints, DbCircle, DbControlPoints, DbDText, DbDimLinear, DbDimStyle, DbDimStyles, DbDoc, DbDocEnv, DbDotEntity, DbEdge, DbEllipse, DbEntity, DbHatch, DbImage, DbImageRef, DbImages, DbLayer, DbLayers, DbLayout, DbLayouts, DbLine, DbMText, DbMesh, DbPadding, DbPixelPoint, DbPline, DbPlotConfig, DbPoint, DbPoint2d, DbRay, DbSolid, DbSpline, DbSplineControlPoint, DbTextStyle, DbTextStyles, DbXline, DefaultDimensionStyle, DialogColors, DiametricDimensionEnt, DiamondMarker, DiffCommand, DimMenu, DimScaleUndoCommand, DimStyleCommand, DimStyleDialog, DimStyleEditDialog, DimensionAngularFormat, DimensionArrowType, DimensionBase, DimensionFitMode, DimensionFormatter, DimensionStyle, DimensionStyles, DimensionTextAlignment, DimensionTextLayout, DimensionTextMovementMode, DimensionTextVerticalPosition, DimensionType, DimensionUnitFormat, DistCommand, DocDropDown, DocDropDownElement, DocEnv, DocumentTabItem, DocumentTabs, Documents, DonutCommand, DotCommand, DotEnt, DrawAdvancedMenu, DrawBezierCurve, DrawMenu, DrawOrderBackCommand, DrawOrderBackUndoCommand, DrawOrderFrontCommand, DrawOrderFrontUndoCommand, DrawSettingsPalette, DrawingBrowserDialog, DrawingBrowserDialogElement, DrawingManagerService, DropEffectComponent, DynamicMenuPanel, EHatchCommand, ENTITY_TYPE_OPTIONS, Edge, EdgeType, Edges, EditMenu, Editor, EllipseCenterCommand, EllipseCommand, EllipseDrawer, EllipseEnt, EmptyCommandAlias, EndPointMarker, EndUndoCommand, Engine, EntityBase, EntityBoundsCalculator, EntityColorUndoCommand, EntityLayerUndoCommand, EntityLineTypeScaleUndoCommand, EntityLineTypeUndoCommand, EntityLineWeightUndoCommand, EntityModifyUndoCommand, EntityPickResult, EntityPicker, EntityReactorManager, EntityRenderer, EntitySelectionSplitter, EntitySelector, EntityStatsCommand, EntityTransparencyUndoCommand, EntityUndoCommand, EntityVisibilityUndoCommand, EraseCommand, EraseEntitiesUndoCommand, ExecuteJsCommand, ExecuteStrCommand, ExplodeCommand, ExportDwgOptionsDialog, ExportToDwgCommand, ExportToPngCommand, ExtendCommand, ExtendedGraphicsProperties, ExtractCenterlineCommand, FileMenuPanel, FilesPalette, FilletCommand, FindReplaceCommand, FindTextService, FitMapViewCommand, FontLoader, FuncButtons, GArc, GBulgePolyline, GCircle, GEllipse, GLine, GPolyline, GeoBounds, GeoPoint, GeoProjection, GeometryCalculator, GeometryUtils, GetInfoCommand, GraphicsBucket, GraphicsBucketManager, GraphicsInfoCommand, GridDisplayDraw, GridModeButton, GripCommand, GripEditor, GripManager, GripMarker, GripUtils, GroupCommand, GroupEnt, HATCH_PATTERN_NAMES, HandleFileDrop, HatchCommand, HatchEnt, HatchLoops, HatchMoveCommand, HatchPatternConfig, HelpMenu, HiddenLineDrawer, HistoryEle, IconCategory, IconRegistry, IdCommand, IdMapping, ImageAdjustCommand, ImageClipCommand, ImageCollection, ImageCommand, ImagePaletteAddCommand, ImagePaletteInsertCommand, ImageRef, ImageRefEnt, ImageRefModifyUndoCommand, ImageSource, ImageSourceAddUndoCommand, ImageSourceRemoveUndoCommand, ImagesPalette, ImportDwgOptionsDialog, ImportFromDwgCommand, Initializer, InputDialog, InputDialogElement, InputNumberDialog, InputResult, InputStatusEnum, InsertCommand, InsertEnt, InsertMenu, InsertSvgCommand, InsertSymbolCommand, InsertionMarker, IntegerInputHandler, IntegerInputOptions, IntegerResult, InvertSelectionCommand, ItemCollection, JIS_LC_20_PATTERN, JIS_LC_8_PATTERN, JIS_RC_10_PATTERN, JIS_RC_15_PATTERN, JIS_RC_18_PATTERN, JIS_RC_30_PATTERN, JIS_WOOD_PATTERN, JustifyTextCommand, KeywordInputHandler, KeywordInputOptions, KeywordResult, LINE_WEIGHT_VALUES, LTScaleSetvar, LanguageButton, LayAllOffCommand, LayAllOnCommand, LayCurCommand, LayDrawBackCommand, LayDrawFrontCommand, LayMCurCommand, LayPickOffCommand, LayPickOnCommand, LayRevCommand, LaySSOffCommand, LaySSOnCommand, LayTblColorCommand, Layer, LayerAddUndoCommand, LayerAlphaCell, LayerColorCell, LayerCommand, LayerCurrentCell, LayerFrozenCell, LayerLTScaleCell, LayerLinetypeCell, LayerLineweightCell, LayerLockedCell, LayerModifyUndoCommand, LayerNameCell, LayerNameDialog, LayerNameDialogElement, LayerOnCell, LayerPaletteCommand, LayerPlottableCell, LayerReference, LayerRemoveUndoCommand, LayerReverseUndoCommand, LayerSelectionDialog, LayerSortUndoCommand, LayerTransparencyDialog, LayerTransparencyDialogElement, Layers, Layout, Layouts, LeaderDirectionType, LeaderType, LineCommand, LineDrawer, LineEnt, LineModifyUndoCommand, LineTypeDialog, LineTypeDialogElement, LineTypeDialogOptions, LineTypeEnum, LineTypeScaleUndoCommand, LinearCopyCommand, LinearDimensionEnt, LinetypeDefinition, LinetypeEditorDialog, LinetypeElement, LinetypeElementType, LinetypeLoadCommand, LinetypeManager, LinetypeParser, LinetypeViewerDialog, LitElement, LocalDrawingBrowserDialog, LocalDrawingBrowserDialogElement, LocalStorageService, LwDisplayCommand, MLeaderContentType, MLeaderEnt, MTextAttachmentEnum, MTextColor, MTextCommand, MTextContext, MTextEditCommand, MTextEnt, MTextLineAlignment, MTextParagraphAlignment, MTextParser, MTextStroke, MTextToken, MagTextCommand, MainView, MainViewElement, MakeLayerCommand, ManageSymbolCommand, MapOpenWay, MatChPropCommand, MeasureAngleCommand, MeasureMenu, MenuBar, MenuConfig, MenuItem, MenuRegistry, Menus, MeshEnt, MessageBoxComponent, MessageBoxConfig, MidGripMarker, MidPointMarker, MirrorCommand, MirrorEntitiesUndoCommand, ModalDialogBase, ModelessPanelBase, MoveCommand, MoveEntitiesUndoCommand, NUMBER_OPERATORS, NearestMarker, NewCommand, NumberInputComponent, ObservablePoint2D, OffsetCommand, OffsetCurrentCommand, OffsetDefaultCommand, OffsetDeleteCommand, OpenCommand, OpenFromLocalCommand, OpenFromServerCommand, OperationTypeEnum, OrdinateDimensionEnt, OrthoModeButton, OrthoModeSetvar, OsModeSetvar, OsnapButton, OsnapCursor, OsnapMarkerContainer, OtherGraphicsProperties, Padding, PanUndoCommand, PanViewUndoCommand, PanelController, ParallelogramCommand, PasteClipCommand, PathCommandType, PatternEditorDialog, PatternLoadCommand, PatternManager, PatternPickerDialog, PatternViewerDialog, PerformanceMonitor, PerpendicularMarker, PickUtils, PixelPointCommand, PixelPointEnt, PlanCommand, PlanViewUndoCommand, PlineCommand, PlineJoinCommand, PlineWidSetvar, PlotAreaDraw, PlotColorStyle, PlotConfig, PlotStyle, PlotStyles, PluginCacheService, PluginContext, PluginError, PluginLoader, PluginManager, PluginManagerDialog, PluginMarketService, PluginOrigin, PluginSourceType, PluginState, PluginsCommand, Point2D$1 as Point2D, PointAndOsnapResult, PointInputOptions, PointInputResult, PointPrompt, PointerEventManager, PolarCopyCommand, PolarModeButton, PolarTracking, PolygonCommand, PolylineEnt, PolylineModifyUndoCommand, PreviewView, PromptEle, PropertiesCommand, PropertyMenu, PropertyPalette, PurgeBlocksCommand, PurgeCommand, PurgeEmptyBlockInsertCommand, PurgeEmptyHatchCommand, PurgeEmptyTextCommand, PurgeImageCommand, PurgeInvalidBoundsCommand, PurgeLayerCommand, QBlockCommand, QSaveCommand, QuadrantMarker, QuickSelectCommand, QuickSelectService, RadialDimensionEnt, RayCommmand, RayDCommand, RayEnt, RayLCommand, RayModifyUndoCommand, RayRCommand, RayUCommand, ReactorEvent, ReactorEventBridge, ReactorNotifier, RealInputHandler, RealInputOptions, RealResult, RecentCommandsManager, RectangCommand, RedoCommand, RegenAllCommand, RegenCommand, RenameBlockCommand, RenderConfig, RenderOriginCommand, ReplaceBlockCommand, ResetImageClipCommand, RevcloudCommand, RibbonBar, RibbonButton, RibbonConfigManager, RibbonGroup, RotateCommand, RotateEntitiesUndoCommand, RotationGripMarker, RubberBandLineDraw, SCOPE_OPTIONS, SELECTION_MODE_OPTIONS, SETTINGS_DEFINITIONS, STRING_OPERATORS, SUPPORTED_LOCALES, SaveAsCommand, SaveAsDialogComp, SaveDrawingDialog, SaveDrawingDialogElement, SaveToLocalCommand, SaveToServerCommand, ScaleBarDraw, ScaleCommand, ScaleEntitiesUndoCommand, ScriptExecutor, ScriptParser, SelectAllCommand, SelectEmptyEntitiesCommand, SelectionCycler, SelectionInputOptions, SelectionModeEnum, SelectionRectangleDraw, SelectionSetInputOptions, SelectionSetInputResult, ServerMapSelectorDialog, Service, SettingsCacheService, SettingsCommand, SettingsDialog, ShapeDefinition, ShapeLinetypeElement, ShapeManager, ShapeParser, ShapePath, ShapeRenderer, SideBarFrame, SideBarFrameElement, SidePalettes, SidebarPanelManager, SidebarStyBoth, SidebarStyLeft, SidebarStyNone, SidebarStyRight, SidebarStySetvar, SimpleLinetypeElement, SingleEntitySelector, SmartBlockCommand, SnapPoint, SolidCommand, SolidEnt, SpatialIndex, SpatialIndexManager, SplineCommand, SplineControlPoint, SplineControlPoints, SplineEnt, SplineFitPoint, SplineFitPoints, SplineKnots, SplitterController, SquareCursorDraw, SsAlignCommand, SsExtendCommand, SsSliceCommand, SsTrimCommand, StartUndoCommand, StatsCommand, StretchCommand, StretchEntitiesUndoCommand, StretchUndoCommand, StringInputHandler, StringInputOptions, StringResult, SwitchWorkspaceCommand, SystemConstants, SystemMessage, TOLERANCE, TangentMarker, TextAlignmentEnum$1 as TextAlignmentEnum, TextAttachmentType, TextCommand, TextCopyCommand, TextEditCommand, TextEnt, TextGripMarker, TextLinetypeElement, TextModifyUndoCommand, TextProperties, TextRotationMode, TextScanner, TextStyle, TextStyles, ThemeButton, ThreePointAngularDimensionEnt, TileAlphaSetvar, TileCache, TileCalculator, TileEditAreaCommand, TileEditLayerCommand, TileEditLayerDialog, TileMaskAlphaSetvar, TileScheduler, TokenType, ToolBar, ToolMenu, TransparencyManager$1 as TransparencyManager, TrimCommand, TwoLineAngularDimensionEnt, Txt2MTxtCommand, UCSAxesDraw, UcsCommand, UcsUndoCommand, UndoCommand, UndoCommandBase, UndoHistoryPanel, UndoManager, UngroupCommand, ValidateBoundsCommand, ViewMenu, WblockCommand, WebCadCoreService, WebMapOverlayCommand, WebMapTileLayer, WheelZoomUndoCommand, WmsTileLayer, XLineEnt, XTextCommand, XlineCommand, XlineModifyUndoCommand, XxCommand, YesNoDialog, YesNoDialogConfig, YesNoDialogElement, YyCommand, ZeroSuppressionFlags, ZoomExtentsCommand, ZoomFactorSetvar, ZoomViewUndoCommand, actbarIcons, activateSidebarPanel, addTextReplacementRule, applyDecorators, applyTextReplacements, boundsIntersect, buildIndexedString, buttonBarStyles, buttonStyles, calcForceAngle, calculateBoundingBoxFromPoints, calculateDoubleLinePoints, calculateHatchPatternScale, calculateLineIntersections, calculatePerpendicularPoint, calculatePolygonArea, calculateStringWidth, calculateTextOffset, check3DBoundingBoxIntersection, checkGroupIntersection, checkHatchIntersection, checkPatternHatchIntersection, checkPolylineIntersection, checkTextBoundsIntersection, checkboxStyles, clearEntityDirtyFlags, clearTextReplacementRules, closeDoubleLineSegment, collectAllEntities, collectEntityData, colorIndexToName, colorNameToIndex, commandsIcons, commoncss, compareArrays, containerStyles, convertArcToDeviceCoordinates, convertGArcToDeviceCoordinates, convertLineToDeviceCoordinates, convertMatchesToBlocks, convertToFloat64, convertToHexArray, createBSplineWithDomain, createBulgePointsFromEntities, createCancellableEventArgs, createDataTypeAccessor, createDimensionArrow, createDoubleButtCap, createDoubleLineSegment, createDoubleRoundCap, createDoubleSquareCap, createDynamicMenuPanel, createEventArgs, createFloatingToolbar, createIndexAccessor, createNoShadowStyles, createPanel, css, customElementDecorator, darkThemeStyles, darkThemeVarsStr, decodeUnicodeString, decryptFromBase64, defaultContextMenuItems, defaultDocumentTabsConfig, defaultPatternMatchOptions, defaultPropertyOptions, defaultRibbonConfig, degreesToRadians, delay, destroyDataBrowserPanel, destroyExtractCenterlinePanel, destroyFindReplacePanel, destroyQuickSelectPanel, destroySmartBlockPanel, destroyWebMapOverlayPanel, detectDataType, dialogBaseStyles, distance, drawFilledRegion, drawPatternFill, drawPolyline, drawSolidFill, encryptToBase64, endUndoMark, entitiesToPolylineVertices, escapeDxfLineEndings, expandArc, extractDefaultExport, extractTables, filterHatchSegments, findIntersections, findLineArcIntersections, findLineCircleIntersections, findPatternMatches, findSubArray, formRowStyles, formatAngleValue, formatDate, formatDimensionValue, formatNumber, formatNumberEx, funcButtonsIcons, generateHatchPatternLines, generateRevcloudBulgePoints, geoBounds, geoPoint, getAllArrowTypes, getAngleBetweenPoints, getArcBoundingBox, getArcCircleIntersections, getArcEntityIntersections, getArcExtExtendedEntityIntersections, getArcExtLineExtIntersections, getArcExtendedEntityIntersections, getArcLineExtIntersections, getArcLineIntersections, getArcLineIntersectionsAlt, getArcLineIntersectionsEx, getArcLineIntersectionsSimple, getArrowTypeName, getCadDialogContainer, getCadViewContainer, getCircleArcIntersectionsFiltered, getCircleCircleIntersections, getCircleEntityIntersections, getCircleEntityIntersectionsSimple, getCircleLineExtIntersections, getCircleLineExtIntersectionsEx, getCircleLineIntersections, getCircleLineIntersectionsAdvanced, getCircleLineIntersectionsSimple, getCirclePolylineIntersections, getComplexLineIntersection, getCorner, getDiffPanel, getDirPath, getDocumentStatusIndicator, getEntity, getEntityAlpha, getEntityBounds, getExtendedEntityPolylineIntersections, getFileExtension, getFileName, getFileNameBase, getFilePath, getFileTypeByExtension, getFonts, getInteger, getKeyword, getLineBoundingBox, getLineCircleIntersections, getLineEntityCollectionIntersections, getLineEntityIntersections, getLineExtArcExtIntersections, getLineExtArcIntersections, getLineExtEntityIntersections, getLineExtEntityIntersectionsEx, getLineExtExtendedEntityIntersections, getLineExtLineExt1Intersections, getLineExtLineExtIntersections, getLineExtLineIntersections, getLineExtendedEntityIntersections, getLineIntersection, getLineIntersections, getLineLineExt1Intersections, getLineLineExtIntersections, getLineLineIntersections, getLineSegmentIntersection, getLocalStorageService, getLocale, getMidPoint, getObjectLineExtLineExt2Intersections, getObjectLineExtLineIntersections, getObjectLineLineExt2Intersections, getOsnapValueFromString, getParameterDomain, getPatternUnitSize, getPoint, getRawObject, getReal, getRecentCommandsManager, getSelections, getServiceHash, getSettingsCacheService, getString, getTableExtractLayers, getTextReplacementRules, getWebCadCoreService, globalShapeManager, hasAnyChildDirty, hasInlineFormattingCodes, hasInvalidChars, headerStyles, hitTestCircle, hitTestEllipse, hitTestGroup, hitTestPattern, hitTestPolyline, hitTestRect, hitTestSpline, html, httpHelper, initCadContainer, initLocale, inputStyles, int2rgb, isAllElementsEqual, isArcType, isArrayOrArrayBufferView, isCircleType, isEllipseType, isEntityInArray, isEntityReactor, isEqual, isGArc, isGCircle, isGEllipse, isGLine, isGreater, isGreaterOrEqual, isHalfWidthChar, isLess, isLessOrEqual, isLineExists, isLineType, isNdArray, isNullOrUndefined, isPointEqual, isPointOnRay, isSupportedLocale, isTextIntersectWithBox, isTypedArrayView, layerDialogIcons, lineWeightToString, loadingStyles, matchLocale, menubarIcons, mergeBoundingBoxes, message, miscIcons, monitorExports, noChange, normalizeAngle, normalizeAngleAlt, normalizeAngleEx, normalizeDegrees, normalizeUndoDescription, nothing, numberToString, offsetLine, onLocaleChange, openMapDarkStyle, openMapLightStyle, osnapIcons, paletteIcons, paletteLayerIcons, palettePlotIcons, panelTitleStyles, parseConfigValue, parseMText, parseMTextToTextObjects, parseNumberToStr, parseTileKey, performanceMonitorInstance, pointInPolygon, polarToCartesian, propertyDecorator, propertyDecoratorFactory, querySelectorDecorator, radiansToDegrees, radioStyles, randInt, readUint16LittleEndian, refreshRemainModelEntities, regen, registerMessages, registerSidebarPanel, removeDuplicatePoints, removeTextReplacementRule, removeTimeStamp, resetToDefaultRules, resultsStyles, rgb2int, rotatePointAroundCenter, rotatePointInPlace, roundToDecimalPlace, safeCustomElementRegistration, scalePointAlongVector, scalePointInPlace, sectionStyles, selectStyles, setLocale, showConfirm, showError, showExportDwgOptionsDialog, showImportDwgOptionsDialog, showInfo, showInputDialog, showPluginManagerDialog, showPrompt, showSelectDialog, showTileEditLayerDialog, showWarningConfirm, sliderStyles, sortEdgeByArea, ssGetFirst, ssSetFirst, startUndoMark, statusStyles, supportsPointerEvents, t, tea, textAlignStringToEnum, tileKey, toPoint2D, transparencyToString, trimWhitespace, unregisterSidebarPanel, unsafeSVGHtml, updateTimeStamp, wrapTextToLines, writeMessage };
54868
- export type { AddMenuDefinition, AddRibbonTabDefinition, AlignedDimensionData, AngleDimensionData, AngularFormatConfig, ArcDimensionData, ArrowRenderConfig, ArrowRenderResult, ArrowType, BlockAddedEventArgs, BlockAddingEventArgs, BlockDeletedEventArgs, BlockDeletingEventArgs, BlockModifiedEventArgs, BooleanOperator, BranchCreatedEventArgs, BranchCreatingEventArgs, BranchDeletedEventArgs, BranchDeletingEventArgs, BranchInfo, BranchMergedEventArgs, BranchMergingEventArgs, BranchSwitchedEventArgs, BranchSwitchingEventArgs, CadBoundsLike, CadEventArgs, CadMapOverlayOptions, CancellableEventArgs, CommandCancelledEventArgs, CommandClass, CommandEndedEventArgs, CommandStartedEventArgs, CommandStartingEventArgs, Config, ConflictDetectedEventArgs, ConflictItem, ConflictResolution, ConflictResolvedEventArgs, ConflictResolvingEventArgs, ConflictSkippedEventArgs, ConflictType, ContextMenuItemClickedEventArgs, ContextMenuItemInfo, ContextMenuOpenedEventArgs, ContextMenuOpeningEventArgs, ConvertToBlockOptions, CurrentLayerChangedEventArgs, CustomEntityDbData, DiametricDimensionData, DiffPanel, DimStyleDialogResult, DimStyleEditResult, DimensionBaseData, DimensionStyleData, DocumentCacheClearedEventArgs, DocumentCachedEventArgs, DocumentCachingEventArgs, DocumentClosedEventArgs, DocumentClosingEventArgs, DocumentCreatedEventArgs, DocumentCreatingEventArgs, DocumentDownloadedEventArgs, DocumentDownloadingEventArgs, DocumentModifiedEventArgs, DocumentOpenedEventArgs, DocumentOpeningEventArgs, DocumentRestoredEventArgs, DocumentRestoringEventArgs, DocumentSavedEventArgs, DocumentSavingEventArgs, DocumentStorageSource, DocumentSwitchedEventArgs, DocumentSyncStatusChangedEventArgs, DocumentTabsConfig, DocumentUploadedEventArgs, DocumentUploadingEventArgs, DoubleLinePoints, DoubleLineSegment, EntitiesAddedEventArgs, EntitiesAddingEventArgs, EntitiesErasedEventArgs, EntitiesErasingEventArgs, EntityAddedEventArgs, EntityAddingEventArgs, EntityErasedEventArgs, EntityErasingEventArgs, EntityModifiedEventArgs, EntityOperationOptions, EntityTypeFilter, EntityTypeOption, EventArgsMap, EventHandler, FillLoopBounds, FillLoopData, FilterCondition, FindOptions, FindResult, FitDecision, FloatingToolbarItem, FloatingToolbarManager, FloatingToolbarOptions, FontInfo, FormatConfig, GBulgePoint, GeoPointLike, GestureState, GestureType, GraphicsBucketManagerConfig, GraphicsPrimitiveStats, GripPointResult, GripPointType, IAdminEditPolicy, IAllDrawingsResponse, IBranchCreateDialogConfig, IBranchCreateDialogResult, IBranchInfo, IBranchMergeDialogConfig, IBranchMergeDialogResult, IBranchSourceInfo, IComposeNewMap, IConditionQueryFeatures, IConflictEntityInfo, IConflictItem, IConflictLayerInfo, IConflictResolutionConfig, IConflictResolutionResult, ICreateBranchParams, ICreateBranchResponse, ICreateEntitiesGeomData, ICreateSymbolParams, IDeleteBranchParams, IDeleteBranchResponse, IDeleteCache, IDeleteStyle, IDeleteWebcadDrawParams, IDeleteWebcadDrawResponse, IDrawingBrowserResult, IEditArea, IEditAreaBounds, IEditAreaRecord, IEntityReactor, IEntityResolution, IExportDwgOptions, IExportDwgOptionsResult, IExportLayout, IExportToDwgDialogConfig, IExportToDwgParams, IExportWebcadParams, IExportWebcadResponse, IExprQueryFeatures, IExtractTable, IGetWebcadDataParams, IGetWebcadDataResponse, IImportDwgOptions, IImportDwgOptionsResult, ILayerInfo, IListWebcadDrawsParams, IListWebcadDrawsResponse, ILoadEditAreaResult, ILoadEditAreasResult, ILoadEditLayersResult, ILocalDrawingBrowserResult, ILocalDrawingListItem, ILocalDrawingRecord, ILocalSymbolCategory, ILocalSymbolRecord, IMapDiff, IMapLayer, IMapStyleParam, IMatchObject, IMergeBranchParams, IMergeBranchResponse, IOpenDrawingParams, IOpenDrawingResult, IOpenMapBaseParam, IOpenMapParam, IOpenMapResponse, IPatchInfo, IPluginContext, IPointQueryFeatures, IQueryBaseFeatures, IRectQueryFeatures, IRequest, ISaveDrawingDialogConfig, ISaveDrawingDialogResult, ISaveDrawingParams, ISaveWebcadPatchParams, ISaveWebcadPatchResponse, IServerMapInfo, IServerMapSelectResult, IServerMapVersion, ISliceCacheZoom, ISliceLayer, ISplitChildMaps, ISymbol, ISymbolCategory, ISymbolConfig, ISymbolListQuery, ISymbolListResult, ISymbolMeta, ITileEditLayerDialogConfig, ITileEditLayerDialogResult, ITileUrlParam, IUpdateMapParam, IUpdateStyle, IUpdateSymbolParams, IUploadMapResult, IVcadEditArea, IVcadMeta, IWebcadDrawInfo, IWmsTileUrl, IWorkspace, IconInfo, IconRegistryOptions, InitializerOptions, InputDialogConfig, InputDialogResult$1 as InputDialogResult, LayerAddedEventArgs, LayerAddingEventArgs, LayerCreateOptions, LayerDeletedEventArgs, LayerDeletingEventArgs, LayerModifiedEventArgs, LeaderData, LeaderLineData, LineSegmentInfo, LineType, LinearDimensionData, Locale, MLeaderData, MainViewConfig, MarketplacePluginInfo, MatchTransform, MenuBarCustomConfig, MenuConfig2, MenuDefinition, MenuItemConfig, MenuItemDef, MenuItemOptions, MenuModification, ModalDialogOptions, NumberOperator, OpenModeType, OpenWayType, OperationType, Operator, OperatorOption, OrdinateDimensionData, OrdinateDisplayMode, OsnapInfo, OwnerReference, PanelManager, PanelPosition, ParsedLine, PatchAppliedEventArgs, PatchApplyingEventArgs, PatchCreatedEventArgs, PatchCreatingEventArgs, PatchInfo, PatchRevertedEventArgs, PatchRevertingEventArgs, PathCommand, PatternMatchOptions, PatternMatchOutput, PatternMatchResult, PatternMatchTolerance, PatternToleranceConfig, Plugin, PluginActivatedEventArgs, PluginActivatingEventArgs, PluginCacheEntry, PluginConfig, PluginDeactivatedEventArgs, PluginDeactivatingEventArgs, PluginErrorEventArgs, PluginInfo, PluginInstance, PluginLoadOptions, PluginLoadResult, PluginLoadedEventArgs, PluginLoadingEventArgs, PluginManifest, PluginMarketResponse, PluginSource, PluginUnloadedEventArgs, PluginUnloadingEventArgs, PointInput, PointerInfo, PointerType, PreFilterOptions, PreviewViewConfig, PropertyDefinition, PropertyInfo, PropertyType, QuickSelectResult, RadialDimensionData, ReactorEventArgs, ReactorRelationData, RecentCommand, Response, RevcloudOptions, RibbonButtonConfig, RibbonButtonType, RibbonConfig, RibbonCustomConfig, RibbonGroupConfig, RibbonGroupDisplayMode, RibbonGroupModification, RibbonTabConfig, RibbonTabModification, ScopeOption, ScriptContext, SearchScope, SelectDialogConfig, SelectionChangedEventArgs, SelectionClearedEventArgs, SelectionMode, SelectionModeOption, SettingDefinition, SettingOption, SettingValueType, SettingsDialogResult, Point2D as ShapePoint2D, ShapeRenderOptions, SidebarPanelConfig, SnapPointResult, SnapPointType, StringOperator, SubGeometry, SyncStatus, TabContextMenuItem, TableAttr, TableData, TableExtractInput, TableExtractOptions, TableExtractParams, TableExtractResult, TableItemData, TapConfig, TemplateResult, TextAlignment, TextLayoutResult, TextPositionConfig, ThreePointAngularDimensionData, TileCoord, TileDebugInfo, TileRequest, TileSchedulerEvents, TileSprite, TileState, TileUpdateParams, ToleranceConfig, TranslationMessages, TwoLineAngularDimensionData, UndoCategory, UndoDescriptionInput, UndoDescriptor, UndoHistoryItem, UndoStackChangedEventArgs, View3DMode, ViewPannedEventArgs, ViewRegeneratedEventArgs, ViewZoomedEventArgs, WebMapTileConfig, WmsTileConfig, YesNoDialogResult, YesNoDialogType };
55337
+ export { ANGLE_0, ANGLE_135, ANGLE_180, ANGLE_225, ANGLE_270, ANGLE_315, ANGLE_360, ANGLE_45, ANGLE_90, ANSI31_PATTERN, ANSI37_PATTERN, AboutCommand, ActiveButton, ActivityBar, ActivityBarElement, AdaptiveRenderingConfig, AddEntitiesUndoCommand, AdvancedEditMenu, AliasListPalette, AlignedDimensionEnt, AlignmentTextCommand, AngleBlockCommand, AngleDimensionEnt, AngleHatchCommand, AngleTextCommand, AntiAliasSetvar, AppDisableIconSvg, AppIconSvg, AppearanceMenu, ArcCSACommand, ArcCSECommand, ArcCSLCommand, ArcCircleProperties, ArcCommand, ArcDimensionEnt, ArcDrawer, ArcEnt, ArcModifyUndoCommand, ArcSCACommand, ArcSCECommand, ArcSCLCommand, ArcSEACommand, ArcSEDCommand, ArcSERCommand, ArcSymbolType, AreaCalculationCollection, AreaCalculationElement, ArrowRenderer, ArrowTypeEnum, AttributeTextProcessor, AutoComplete, AutoCompleteElement, AutoComplteRow, AutoComplteRowElement, BOOLEAN_OPERATORS, BSplineConstructor, BaseDialogComponent, BaseGraphicsProperties, BaseMessage, BasePanelComponent, BasicEditMenu, BezierEnt, BlockAddUndoCommand, BlockCommand, BlockDefinition, BlockModifyUndoCommand, BlockNameDialog, BlockRedefineUndoCommand, BlockReference, BlockRemoveUndoCommand, BlockSortUndoCommand, Blocks, BlocksPalette, BottomBar, BoundaryDetector, BoundingBox, BoundingBoxCommand, BoxCommand, BoxModifyUndoCommand, BranchCreateDialog, BranchMergeDialog, BucketEntityRenderer, BulgePoint, BulgePoints, BurstTextCommand, ButtonEle, CLayerSetvar, CadDocument, CadEventEmitter, CadEventManager, CadEvents, CadGraphics, CadMapOverlay, CadPatternDef, CanvasController, CeColorSetvar, CenterMarker, ChangeColorCommand, ChangeLTypeCommand, ChangeLTypeScaleCommand, ChangeLayerCommand, ChangeLineWeightCommand, ChangeLineWeightDialog, ChangeTranspCommand, Circle2PCommand, Circle3PCommand, CircleCommand, CircleDiameterCommand, CircleDrawer, CircleEnt, CircleMarker, CircleModifyUndoCommand, CircleTTRCommand, CircleTTTCommand, ClipMode, ClipRegionCommand, ClipboardObj, CloseCommand, CloseXCommand, ColorConverter, ColorDialogOptions, ColorPanelDialog, CommandAlias, CommandAliasManager, CommandDefinition, CommandLine, CommandListPalette, CommandOptions, CommandRegistry, CommandResult, ConflictResolutionDialog, ContextMenu, ContextMenuAction, ContextMenuItem, ContinueDimensionCommand, ControlPoint, ControlPoints, CoordinateAxesDraw, CoordinateSystemIndicatorDraw, CoordinateSystemType, CoordinateTransform, CoordsBar, CoordsPalette, CopyBaseCommand, CopyClipCommand, CopyCommand, CornerInputHandler, CornerInputOptions, CornerSelectionHandler, CountBlockCommand, CountTextCommand, CreateAlignedDimensionCommand, CreateAngleDimensionCommand, CreateArcLengthDimensionCommand, CreateDiametricDimensionCommand, CreateLinearDimensionCommand, CreateMLeaderCommand, CreateMenu, CreateOrdinateDimensionCommand, CreateRadialDimensionCommand, CreateSymbolCommand, CrosshairCursorDraw, CtbPalette, CurrentLayerUndoCommand, CustomEntityBase, CustomEntityRegistry, CutBaseCommand, CutClipCommand, CutRecCommand, DLineCommand, DataBrowserCommand, DataToDrawCommand, DbArc, DbBackgroundConfig, DbBlock, DbBlockRef, DbBlocks, DbBox, DbBulgePoint, DbBulgePoints, DbCircle, DbControlPoints, DbDText, DbDimLinear, DbDimStyle, DbDimStyles, DbDoc, DbDocEnv, DbDotEntity, DbEdge, DbEllipse, DbEntity, DbHatch, DbImage, DbImageRef, DbImages, DbLayer, DbLayers, DbLayout, DbLayouts, DbLine, DbMText, DbMesh, DbPadding, DbPixelPoint, DbPline, DbPlotConfig, DbPoint, DbPoint2d, DbRay, DbSolid, DbSpline, DbSplineControlPoint, DbTextStyle, DbTextStyles, DbXline, DefaultDimensionStyle, DialogColors, DiametricDimensionEnt, DiamondMarker, DiffCommand, DiffUtils, DimMenu, DimScaleUndoCommand, DimStyleCommand, DimStyleDialog, DimStyleEditDialog, DimensionAngularFormat, DimensionArrowType, DimensionBase, DimensionFitMode, DimensionFormatter, DimensionStyle, DimensionStyles, DimensionTextAlignment, DimensionTextLayout, DimensionTextMovementMode, DimensionTextVerticalPosition, DimensionType, DimensionUnitFormat, DistCommand, DocDropDown, DocDropDownElement, DocEnv, DocumentTabItem, DocumentTabs, Documents, DonutCommand, DotCommand, DotEnt, DrawAdvancedMenu, DrawBezierCurve, DrawMenu, DrawOrderBackCommand, DrawOrderBackUndoCommand, DrawOrderFrontCommand, DrawOrderFrontUndoCommand, DrawSettingsPalette, DrawingBrowserDialog, DrawingBrowserDialogElement, DrawingManagerService, DropEffectComponent, DynamicMenuPanel, EHatchCommand, ENTITY_TYPE_OPTIONS, Edge, EdgeType, Edges, EditMenu, Editor, EllipseCenterCommand, EllipseCommand, EllipseDrawer, EllipseEnt, EmptyCommandAlias, EndPointMarker, EndUndoCommand, Engine, EntityBase, EntityBoundsCalculator, EntityColorUndoCommand, EntityLayerUndoCommand, EntityLineTypeScaleUndoCommand, EntityLineTypeUndoCommand, EntityLineWeightUndoCommand, EntityModifyUndoCommand, EntityPickResult, EntityPicker, EntityReactorManager, EntityRenderer, EntitySelectionSplitter, EntitySelector, EntityStatsCommand, EntityTransparencyUndoCommand, EntityUndoCommand, EntityVisibilityUndoCommand, EraseCommand, EraseEntitiesUndoCommand, ExecuteJsCommand, ExecuteStrCommand, ExplodeCommand, ExportDwgOptionsDialog, ExportToDwgCommand, ExportToPngCommand, ExtendCommand, ExtendedGraphicsProperties, ExtractCenterlineCommand, FileMenuPanel, FilesPalette, FilletCommand, FindReplaceCommand, FindTextService, FitMapViewCommand, FontLoader, FuncButtons, GArc, GBulgePolyline, GCircle, GEllipse, GLine, GPolyline, GeoBounds, GeoPoint, GeoProjection, GeometryCalculator, GeometryUtils, GetInfoCommand, GraphicsBucket, GraphicsBucketManager, GraphicsInfoCommand, GridDisplayDraw, GridModeButton, GripCommand, GripEditor, GripManager, GripMarker, GripUtils, GroupCommand, GroupEnt, HATCH_PATTERN_NAMES, HandleFileDrop, HatchCommand, HatchEnt, HatchLoops, HatchMoveCommand, HatchPatternConfig, HelpMenu, HiddenLineDrawer, HistoryEle, IconCategory, IconRegistry, IdCommand, IdMapping, ImageAdjustCommand, ImageClipCommand, ImageCollection, ImageCommand, ImagePaletteAddCommand, ImagePaletteInsertCommand, ImageRef, ImageRefEnt, ImageRefModifyUndoCommand, ImageSource, ImageSourceAddUndoCommand, ImageSourceRemoveUndoCommand, ImagesPalette, ImportDwgOptionsDialog, ImportFromDwgCommand, Initializer, InputDialog, InputDialogElement, InputNumberDialog, InputResult, InputStatusEnum, InsertCommand, InsertEnt, InsertMenu, InsertSvgCommand, InsertSymbolCommand, InsertionMarker, IntegerInputHandler, IntegerInputOptions, IntegerResult, InvertSelectionCommand, ItemCollection, JIS_LC_20_PATTERN, JIS_LC_8_PATTERN, JIS_RC_10_PATTERN, JIS_RC_15_PATTERN, JIS_RC_18_PATTERN, JIS_RC_30_PATTERN, JIS_WOOD_PATTERN, JustifyTextCommand, KeywordInputHandler, KeywordInputOptions, KeywordResult, LINE_WEIGHT_VALUES, LTScaleSetvar, LanguageButton, LayAllOffCommand, LayAllOnCommand, LayCurCommand, LayDrawBackCommand, LayDrawFrontCommand, LayMCurCommand, LayPickOffCommand, LayPickOnCommand, LayRevCommand, LaySSOffCommand, LaySSOnCommand, LayTblColorCommand, Layer, LayerAddUndoCommand, LayerAlphaCell, LayerColorCell, LayerCommand, LayerCurrentCell, LayerFrozenCell, LayerLTScaleCell, LayerLinetypeCell, LayerLineweightCell, LayerLockedCell, LayerModifyUndoCommand, LayerNameCell, LayerNameDialog, LayerNameDialogElement, LayerOnCell, LayerPaletteCommand, LayerPlottableCell, LayerReference, LayerRemoveUndoCommand, LayerReverseUndoCommand, LayerSelectionDialog, LayerSortUndoCommand, LayerTransparencyDialog, LayerTransparencyDialogElement, Layers, Layout, Layouts, LeaderDirectionType, LeaderType, LineCommand, LineDrawer, LineEnt, LineModifyUndoCommand, LineTypeDialog, LineTypeDialogElement, LineTypeDialogOptions, LineTypeEnum, LineTypeScaleUndoCommand, LinearCopyCommand, LinearDimensionEnt, LinetypeDefinition, LinetypeEditorDialog, LinetypeElement, LinetypeElementType, LinetypeLoadCommand, LinetypeManager, LinetypeParser, LinetypeViewerDialog, LitElement, LocalDrawingBrowserDialog, LocalDrawingBrowserDialogElement, LocalStorageService, LwDisplayCommand, MLeaderContentType, MLeaderEnt, MTextAttachmentEnum, MTextColor, MTextCommand, MTextContext, MTextEditCommand, MTextEnt, MTextLineAlignment, MTextParagraphAlignment, MTextParser, MTextStroke, MTextToken, MagTextCommand, MainView, MainViewElement, MakeLayerCommand, ManageSymbolCommand, MapOpenWay, MatChPropCommand, MeasureAngleCommand, MeasureMenu, MenuBar, MenuConfig, MenuItem, MenuRegistry, Menus, MeshEnt, MessageBoxComponent, MessageBoxConfig, MidGripMarker, MidPointMarker, MirrorCommand, MirrorEntitiesUndoCommand, ModalDialogBase, ModelessPanelBase, MoveCommand, MoveEntitiesUndoCommand, NUMBER_OPERATORS, NearestMarker, NewCommand, NumberInputComponent, ObservablePoint2D, OffsetCommand, OffsetCurrentCommand, OffsetDefaultCommand, OffsetDeleteCommand, OpenCommand, OpenFromLocalCommand, OpenFromServerCommand, OperationTypeEnum, OrdinateDimensionEnt, OrthoModeButton, OrthoModeSetvar, OsModeSetvar, OsnapButton, OsnapCursor, OsnapMarkerContainer, OtherGraphicsProperties, Padding, PanUndoCommand, PanViewUndoCommand, PanelController, ParallelogramCommand, PasteClipCommand, PathCommandType, PatternEditorDialog, PatternLoadCommand, PatternManager, PatternPickerDialog, PatternViewerDialog, PerformanceMonitor, PerpendicularMarker, PickUtils, PixelPointCommand, PixelPointEnt, PlanCommand, PlanViewUndoCommand, PlineCommand, PlineJoinCommand, PlineWidSetvar, PlotAreaDraw, PlotColorStyle, PlotConfig, PlotStyle, PlotStyles, PluginCacheService, PluginContext, PluginError, PluginLoader, PluginManager, PluginManagerDialog, PluginMarketService, PluginOrigin, PluginSourceType, PluginState, PluginsCommand, Point2D$1 as Point2D, PointAndOsnapResult, PointInputOptions, PointInputResult, PointPrompt, PointerEventManager, PolarCopyCommand, PolarModeButton, PolarTracking, PolygonCommand, PolylineEnt, PolylineModifyUndoCommand, PreviewView, PromptEle, PropertiesCommand, PropertyMenu, PropertyPalette, PurgeBlocksCommand, PurgeCommand, PurgeEmptyBlockInsertCommand, PurgeEmptyHatchCommand, PurgeEmptyTextCommand, PurgeImageCommand, PurgeInvalidBoundsCommand, PurgeLayerCommand, QBlockCommand, QSaveCommand, QuadrantMarker, QuickSelectCommand, QuickSelectService, RadialDimensionEnt, RayCommmand, RayDCommand, RayEnt, RayLCommand, RayModifyUndoCommand, RayRCommand, RayUCommand, ReactorEvent, ReactorEventBridge, ReactorNotifier, RealInputHandler, RealInputOptions, RealResult, RecentCommandsManager, RectangCommand, RedoCommand, RegenAllCommand, RegenCommand, RenameBlockCommand, RenderConfig, RenderOriginCommand, ReplaceBlockCommand, ResetImageClipCommand, RevcloudCommand, RibbonBar, RibbonButton, RibbonConfigManager, RibbonGroup, RotateCommand, RotateEntitiesUndoCommand, RotationGripMarker, RubberBandLineDraw, SCOPE_OPTIONS, SELECTION_MODE_OPTIONS, SETTINGS_DEFINITIONS, STRING_OPERATORS, SUPPORTED_LOCALES, SaveAsCommand, SaveAsDialogComp, SaveDrawingDialog, SaveDrawingDialogElement, SaveToLocalCommand, SaveToServerCommand, ScaleBarDraw, ScaleCommand, ScaleEntitiesUndoCommand, ScriptExecutor, ScriptParser, SelectAllCommand, SelectEmptyEntitiesCommand, SelectionCycler, SelectionInputOptions, SelectionModeEnum, SelectionRectangleDraw, SelectionSetInputOptions, SelectionSetInputResult, ServerMapSelectorDialog, Service, SettingsCacheService, SettingsCommand, SettingsDialog, ShapeDefinition, ShapeLinetypeElement, ShapeManager, ShapeParser, ShapePath, ShapeRenderer, SideBarFrame, SideBarFrameElement, SidePalettes, SidebarPanelManager, SidebarStyBoth, SidebarStyLeft, SidebarStyNone, SidebarStyRight, SidebarStySetvar, SimpleLinetypeElement, SingleEntitySelector, SmartBlockCommand, SnapPoint, SolidCommand, SolidEnt, SpatialIndex, SpatialIndexManager, SplineCommand, SplineControlPoint, SplineControlPoints, SplineEnt, SplineFitPoint, SplineFitPoints, SplineKnots, SplitterController, SquareCursorDraw, SsAlignCommand, SsExtendCommand, SsSliceCommand, SsTrimCommand, StartUndoCommand, StatsCommand, StretchCommand, StretchEntitiesUndoCommand, StretchUndoCommand, StringInputHandler, StringInputOptions, StringResult, SwitchWorkspaceCommand, SymbolInteractiveInserter, SystemConstants, SystemMessage, TOLERANCE, TangentMarker, TextAlignmentEnum$1 as TextAlignmentEnum, TextAttachmentType, TextCommand, TextCopyCommand, TextEditCommand, TextEnt, TextGripMarker, TextLinetypeElement, TextModifyUndoCommand, TextProperties, TextRotationMode, TextScanner, TextStyle, TextStyles, ThemeButton, ThreePointAngularDimensionEnt, TileAlphaSetvar, TileCache, TileCalculator, TileEditAreaCommand, TileEditLayerCommand, TileEditLayerDialog, TileMaskAlphaSetvar, TileScheduler, TokenType, ToolBar, ToolMenu, TransparencyManager$1 as TransparencyManager, TrimCommand, TwoLineAngularDimensionEnt, Txt2MTxtCommand, UCSAxesDraw, UcsCommand, UcsUndoCommand, UndoCommand, UndoCommandBase, UndoHistoryPanel, UndoManager, UngroupCommand, ValidateBoundsCommand, ViewMenu, WblockCommand, WebCadCoreService, WebMapOverlayCommand, WebMapTileLayer, WheelZoomUndoCommand, WmsTileLayer, XLineEnt, XTextCommand, XlineCommand, XlineModifyUndoCommand, XxCommand, YesNoDialog, YesNoDialogConfig, YesNoDialogElement, YyCommand, ZeroSuppressionFlags, ZoomExtentsCommand, ZoomFactorSetvar, ZoomViewUndoCommand, actbarIcons, activateSidebarPanel, addTextReplacementRule, applyDecorators, applyTextReplacements, base64ToUint8Array, boundsIntersect, buildIndexedString, buildSymbolVcadData, buttonBarStyles, buttonStyles, calcForceAngle, calculateBoundingBoxFromPoints, calculateDoubleLinePoints, calculateHatchPatternScale, calculateLineIntersections, calculatePerpendicularPoint, calculatePolygonArea, calculateStringWidth, calculateTextOffset, check3DBoundingBoxIntersection, checkGroupIntersection, checkHatchIntersection, checkPatternHatchIntersection, checkPolylineIntersection, checkTextBoundsIntersection, checkboxStyles, clearEntityDirtyFlags, clearTextReplacementRules, closeDoubleLineSegment, collectAllEntities, collectEntityData, colorIndexToName, colorNameToIndex, commandsIcons, commoncss, compareArrays, compressSymbolData, containerStyles, convertArcToDeviceCoordinates, convertGArcToDeviceCoordinates, convertLineToDeviceCoordinates, convertMatchesToBlocks, convertToFloat64, convertToHexArray, createBSplineWithDomain, createBulgePointsFromEntities, createCancellableEventArgs, createDataTypeAccessor, createDimensionArrow, createDoubleButtCap, createDoubleLineSegment, createDoubleRoundCap, createDoubleSquareCap, createDynamicMenuPanel, createEventArgs, createFloatingToolbar, createIndexAccessor, createNoShadowStyles, createPanel, css, customElementDecorator, darkThemeStyles, darkThemeVarsStr, decodeUnicodeString, decompressSymbolData, decryptFromBase64, defaultContextMenuItems, defaultDocumentTabsConfig, defaultPatternMatchOptions, defaultPropertyOptions, defaultRibbonConfig, degreesToRadians, delay, destroyDataBrowserPanel, destroyExtractCenterlinePanel, destroyFindReplacePanel, destroyQuickSelectPanel, destroySmartBlockPanel, destroyWebMapOverlayPanel, detectDataType, dialogBaseStyles, distance, drawFilledRegion, drawPatternFill, drawPolyline, drawSolidFill, encryptToBase64, endUndoMark, entitiesToPolylineVertices, escapeDxfLineEndings, expandArc, exportEntitiesToImage, exportEntitiesToImageAndDownload, extractDefaultExport, extractTables, filterHatchSegments, findIntersections, findLineArcIntersections, findLineCircleIntersections, findPatternMatches, findSubArray, fitPointsToControlPoints, formRowStyles, formatAngleValue, formatDate, formatDimensionValue, formatNumber, formatNumberEx, funcButtonsIcons, generateHatchPatternLines, generateRevcloudBulgePoints, generateThumbnailFromEntities, generateThumbnailFromVcadData, geoBounds, geoPoint, getAllArrowTypes, getAngleBetweenPoints, getArcBoundingBox, getArcCircleIntersections, getArcEntityIntersections, getArcExtExtendedEntityIntersections, getArcExtLineExtIntersections, getArcExtendedEntityIntersections, getArcLineExtIntersections, getArcLineIntersections, getArcLineIntersectionsAlt, getArcLineIntersectionsEx, getArcLineIntersectionsSimple, getArrowTypeName, getCadDialogContainer, getCadViewContainer, getCircleArcIntersectionsFiltered, getCircleCircleIntersections, getCircleEntityIntersections, getCircleEntityIntersectionsSimple, getCircleLineExtIntersections, getCircleLineExtIntersectionsEx, getCircleLineIntersections, getCircleLineIntersectionsAdvanced, getCircleLineIntersectionsSimple, getCirclePolylineIntersections, getComplexLineIntersection, getCorner, getDiffPanel, getDirPath, getDocumentStatusIndicator, getEntity, getEntityAlpha, getEntityBounds, getExtendedEntityPolylineIntersections, getFileExtension, getFileName, getFileNameBase, getFilePath, getFileTypeByExtension, getFonts, getInteger, getKeyword, getLineBoundingBox, getLineCircleIntersections, getLineEntityCollectionIntersections, getLineEntityIntersections, getLineExtArcExtIntersections, getLineExtArcIntersections, getLineExtEntityIntersections, getLineExtEntityIntersectionsEx, getLineExtExtendedEntityIntersections, getLineExtLineExt1Intersections, getLineExtLineExtIntersections, getLineExtLineIntersections, getLineExtendedEntityIntersections, getLineIntersection, getLineIntersections, getLineLineExt1Intersections, getLineLineExtIntersections, getLineLineIntersections, getLineSegmentIntersection, getLocalStorageService, getLocale, getMidPoint, getObjectLineExtLineExt2Intersections, getObjectLineExtLineIntersections, getObjectLineLineExt2Intersections, getOsnapValueFromString, getParameterDomain, getPatternUnitSize, getPoint, getRawObject, getReal, getRecentCommandsManager, getSelections, getServiceHash, getSettingsCacheService, getString, getTableExtractLayers, getTextReplacementRules, getWebCadCoreService, globalShapeManager, hasAnyChildDirty, hasInlineFormattingCodes, hasInvalidChars, headerStyles, hitTestCircle, hitTestEllipse, hitTestGroup, hitTestPattern, hitTestPolyline, hitTestRect, hitTestSpline, html, httpHelper, initCadContainer, initLocale, inputStyles, insertSymbolInteractive, int2rgb, isAllElementsEqual, isArcType, isArrayOrArrayBufferView, isCircleType, isEllipseType, isEntityInArray, isEntityReactor, isEqual, isGArc, isGCircle, isGEllipse, isGLine, isGreater, isGreaterOrEqual, isHalfWidthChar, isLess, isLessOrEqual, isLineExists, isLineType, isNdArray, isNullOrUndefined, isPointEqual, isPointOnRay, isSupportedLocale, isTextIntersectWithBox, isTypedArrayView, layerDialogIcons, lineWeightToString, loadingStyles, matchLocale, menubarIcons, mergeBoundingBoxes, mergeSymbolToDocument, message, miscIcons, monitorExports, noChange, normalizeAngle, normalizeAngleAlt, normalizeAngleEx, normalizeDegrees, normalizeUndoDescription, nothing, numberToString, offsetLine, onLocaleChange, openMapDarkStyle, openMapLightStyle, osnapIcons, paletteIcons, paletteLayerIcons, palettePlotIcons, panelTitleStyles, parseConfigValue, parseMText, parseMTextToTextObjects, parseNumberToStr, parseSymbolVcadData, parseTileKey, performanceMonitorInstance, pointInPolygon, polarToCartesian, propertyDecorator, propertyDecoratorFactory, querySelectorDecorator, radiansToDegrees, radioStyles, randInt, readUint16LittleEndian, refreshRemainModelEntities, regen, registerMessages, registerSidebarPanel, removeDuplicatePoints, removeTextReplacementRule, removeTimeStamp, resetToDefaultRules, resultsStyles, rgb2int, rotatePointAroundCenter, rotatePointInPlace, roundToDecimalPlace, safeCustomElementRegistration, scalePointAlongVector, scalePointInPlace, sectionStyles, selectStyles, setLocale, showConfirm, showError, showExportDwgOptionsDialog, showImportDwgOptionsDialog, showInfo, showInputDialog, showPluginManagerDialog, showPrompt, showSelectDialog, showTileEditLayerDialog, showWarningConfirm, sliderStyles, sortEdgeByArea, ssGetFirst, ssSetFirst, startUndoMark, statusStyles, supportsPointerEvents, t, tea, textAlignStringToEnum, tileKey, toPoint2D, transparencyToString, trimWhitespace, uint8ArrayToBase64, unregisterSidebarPanel, unsafeSVGHtml, updateTimeStamp, wrapTextToLines, writeMessage };
55338
+ export type { AddMenuDefinition, AddRibbonTabDefinition, AlignedDimensionData, AngleDimensionData, AngularFormatConfig, ArcDimensionData, ArrowRenderConfig, ArrowRenderResult, ArrowType, BlockAddedEventArgs, BlockAddingEventArgs, BlockDeletedEventArgs, BlockDeletingEventArgs, BlockModifiedEventArgs, BooleanOperator, BoundaryDetectionResult, BoundaryDetectorOptions, BranchCreatedEventArgs, BranchCreatingEventArgs, BranchDeletedEventArgs, BranchDeletingEventArgs, BranchInfo, BranchMergedEventArgs, BranchMergingEventArgs, BranchSwitchedEventArgs, BranchSwitchingEventArgs, CadBoundsLike, CadEventArgs, CadMapOverlayOptions, CancellableEventArgs, CommandCancelledEventArgs, CommandClass, CommandEndedEventArgs, CommandStartedEventArgs, CommandStartingEventArgs, Config, ConflictDetectedEventArgs, ConflictItem, ConflictResolution, ConflictResolvedEventArgs, ConflictResolvingEventArgs, ConflictSkippedEventArgs, ConflictType, ContextMenuItemClickedEventArgs, ContextMenuItemInfo, ContextMenuOpenedEventArgs, ContextMenuOpeningEventArgs, ConvertToBlockOptions, CurrentLayerChangedEventArgs, CustomEntityDbData, DiametricDimensionData, DiffPanel, DimStyleDialogResult, DimStyleEditResult, DimensionBaseData, DimensionStyleData, DocumentCacheClearedEventArgs, DocumentCachedEventArgs, DocumentCachingEventArgs, DocumentClosedEventArgs, DocumentClosingEventArgs, DocumentCreatedEventArgs, DocumentCreatingEventArgs, DocumentDownloadedEventArgs, DocumentDownloadingEventArgs, DocumentModifiedEventArgs, DocumentOpenedEventArgs, DocumentOpeningEventArgs, DocumentRestoredEventArgs, DocumentRestoringEventArgs, DocumentSavedEventArgs, DocumentSavingEventArgs, DocumentStorageSource, DocumentSwitchedEventArgs, DocumentSyncStatusChangedEventArgs, DocumentTabsConfig, DocumentUploadedEventArgs, DocumentUploadingEventArgs, DoubleLinePoints, DoubleLineSegment, EntitiesAddedEventArgs, EntitiesAddingEventArgs, EntitiesErasedEventArgs, EntitiesErasingEventArgs, EntityAddedEventArgs, EntityAddingEventArgs, EntityErasedEventArgs, EntityErasingEventArgs, EntityModifiedEventArgs, EntityOperationOptions, EntityTypeFilter, EntityTypeOption, EventArgsMap, EventHandler, ExportImageTheme, FillLoopBounds, FillLoopData, FilterCondition, FindOptions, FindResult, FitDecision, FitPointsOptions, FitPointsResult, FloatingToolbarItem, FloatingToolbarManager, FloatingToolbarOptions, FontInfo, FormatConfig, GBulgePoint, GeoPointLike, GestureState, GestureType, GraphicsBucketManagerConfig, GraphicsPrimitiveStats, GripPointResult, GripPointType, IAdminEditPolicy, IAllDrawingsResponse, IBranchCreateDialogConfig, IBranchCreateDialogResult, IBranchInfo, IBranchMergeDialogConfig, IBranchMergeDialogResult, IBranchSourceInfo, IComposeNewMap, IConditionQueryFeatures, IConflictEntityInfo, IConflictItem, IConflictLayerInfo, IConflictResolutionConfig, IConflictResolutionResult, ICreateBranchParams, ICreateBranchResponse, ICreateEntitiesGeomData, ICreateSymbolParams, IDeleteBranchParams, IDeleteBranchResponse, IDeleteCache, IDeleteStyle, IDeleteWebcadDrawParams, IDeleteWebcadDrawResponse, IDiffListItem, IDiffResult, IDiffSummary, IDrawingBrowserResult, IEditArea, IEditAreaBounds, IEditAreaRecord, IEntityReactor, IEntityResolution, IExportDwgOptions, IExportDwgOptionsResult, IExportImageOptions, IExportImageResult, IExportLayout, IExportToDwgDialogConfig, IExportToDwgParams, IExportWebcadParams, IExportWebcadResponse, IExprQueryFeatures, IExtractTable, IGetWebcadDataParams, IGetWebcadDataResponse, IImportDwgOptions, IImportDwgOptionsResult, ILayerInfo, IListWebcadDrawsParams, IListWebcadDrawsResponse, ILoadEditAreaResult, ILoadEditAreasResult, ILoadEditLayersResult, ILocalDrawingBrowserResult, ILocalDrawingListItem, ILocalDrawingRecord, ILocalSymbolCategory, ILocalSymbolRecord, IMapDiff, IMapLayer, IMapStyleParam, IMatchObject, IMergeBranchParams, IMergeBranchResponse, IOpenDrawingParams, IOpenDrawingResult, IOpenMapBaseParam, IOpenMapParam, IOpenMapResponse, IPatchInfo, IPluginContext, IPointQueryFeatures, IPropChange, IQueryBaseFeatures, IRectQueryFeatures, IRequest, ISaveDrawingDialogConfig, ISaveDrawingDialogResult, ISaveDrawingParams, ISaveWebcadPatchParams, ISaveWebcadPatchResponse, IServerMapInfo, IServerMapSelectResult, IServerMapVersion, ISliceCacheZoom, ISliceLayer, ISplitChildMaps, ISymbol, ISymbolCategory, ISymbolConfig, ISymbolListQuery, ISymbolListResult, ISymbolMeta, ITileEditLayerDialogConfig, ITileEditLayerDialogResult, ITileUrlParam, IUpdateMapParam, IUpdateStyle, IUpdateSymbolParams, IUploadMapResult, IVcadEditArea, IVcadMeta, IWebcadDrawInfo, IWmsTileUrl, IWorkspace, IconInfo, IconRegistryOptions, InitializerOptions, InputDialogConfig, InputDialogResult$1 as InputDialogResult, InsertSymbolInteractiveOptions, KnotParameterization, LayerAddedEventArgs, LayerAddingEventArgs, LayerCreateOptions, LayerDeletedEventArgs, LayerDeletingEventArgs, LayerModifiedEventArgs, LeaderData, LeaderLineData, LineSegmentInfo, LineType, LinearDimensionData, Locale, MLeaderData, MainViewConfig, MarketplacePluginInfo, MatchTransform, MenuBarCustomConfig, MenuConfig2, MenuDefinition, MenuItemConfig, MenuItemDef, MenuItemOptions, MenuModification, ModalDialogOptions, NumberOperator, OpenModeType, OpenWayType, OperationType, Operator, OperatorOption, OrdinateDimensionData, OrdinateDisplayMode, OsnapInfo, OwnerReference, PanelManager, PanelPosition, ParsedLine, PatchAppliedEventArgs, PatchApplyingEventArgs, PatchCreatedEventArgs, PatchCreatingEventArgs, PatchInfo, PatchRevertedEventArgs, PatchRevertingEventArgs, PathCommand, PatternMatchOptions, PatternMatchOutput, PatternMatchResult, PatternMatchTolerance, PatternToleranceConfig, Plugin, PluginActivatedEventArgs, PluginActivatingEventArgs, PluginCacheEntry, PluginConfig, PluginDeactivatedEventArgs, PluginDeactivatingEventArgs, PluginErrorEventArgs, PluginInfo, PluginInstance, PluginLoadOptions, PluginLoadResult, PluginLoadedEventArgs, PluginLoadingEventArgs, PluginManifest, PluginMarketResponse, PluginSource, PluginUnloadedEventArgs, PluginUnloadingEventArgs, PointInput, PointerInfo, PointerType, PreFilterOptions, PreviewViewConfig, PropertyDefinition, PropertyInfo, PropertyType, QuickSelectResult, RadialDimensionData, ReactorEventArgs, ReactorRelationData, RecentCommand, Response, RevcloudOptions, RibbonButtonConfig, RibbonButtonType, RibbonConfig, RibbonCustomConfig, RibbonGroupConfig, RibbonGroupDisplayMode, RibbonGroupModification, RibbonTabConfig, RibbonTabModification, ScopeOption, ScriptContext, SearchScope, SelectDialogConfig, SelectionChangedEventArgs, SelectionClearedEventArgs, SelectionMode, SelectionModeOption, SettingDefinition, SettingOption, SettingValueType, SettingsDialogResult, Point2D as ShapePoint2D, ShapeRenderOptions, SidebarPanelConfig, SnapPointResult, SnapPointType, StringOperator, SubGeometry, SyncStatus, TabContextMenuItem, TableAttr, TableData, TableExtractInput, TableExtractOptions, TableExtractParams, TableExtractResult, TableItemData, TapConfig, TemplateResult, TextAlignment, TextLayoutResult, TextPositionConfig, ThreePointAngularDimensionData, TileCoord, TileDebugInfo, TileRequest, TileSchedulerEvents, TileSprite, TileState, TileUpdateParams, ToleranceConfig, TranslationMessages, TwoLineAngularDimensionData, UndoCategory, UndoDescriptionInput, UndoDescriptor, UndoHistoryItem, UndoStackChangedEventArgs, View3DMode, ViewPannedEventArgs, ViewRegeneratedEventArgs, ViewZoomedEventArgs, WebMapTileConfig, WmsTileConfig, YesNoDialogResult, YesNoDialogType };
54869
55339
 
54870
55340
  // ============================================
54871
55341
  // UMD global namespace declaration
@@ -54895,6 +55365,7 @@ interface VjcadModule {
54895
55365
  ActiveButton: typeof ActiveButton;
54896
55366
  ActivityBar: typeof ActivityBar;
54897
55367
  ActivityBarElement: typeof ActivityBarElement;
55368
+ AdaptiveRenderingConfig: typeof AdaptiveRenderingConfig;
54898
55369
  AddEntitiesUndoCommand: typeof AddEntitiesUndoCommand;
54899
55370
  AdvancedEditMenu: typeof AdvancedEditMenu;
54900
55371
  AliasListPalette: typeof AliasListPalette;
@@ -54953,6 +55424,7 @@ interface VjcadModule {
54953
55424
  Blocks: typeof Blocks;
54954
55425
  BlocksPalette: typeof BlocksPalette;
54955
55426
  BottomBar: typeof BottomBar;
55427
+ BoundaryDetector: typeof BoundaryDetector;
54956
55428
  BoundingBox: typeof BoundingBox;
54957
55429
  BoundingBoxCommand: typeof BoundingBoxCommand;
54958
55430
  BoxCommand: typeof BoxCommand;
@@ -55099,6 +55571,7 @@ interface VjcadModule {
55099
55571
  DiametricDimensionEnt: typeof DiametricDimensionEnt;
55100
55572
  DiamondMarker: typeof DiamondMarker;
55101
55573
  DiffCommand: typeof DiffCommand;
55574
+ DiffUtils: typeof DiffUtils;
55102
55575
  DimMenu: typeof DimMenu;
55103
55576
  DimScaleUndoCommand: typeof DimScaleUndoCommand;
55104
55577
  DimStyleCommand: typeof DimStyleCommand;
@@ -55576,6 +56049,7 @@ interface VjcadModule {
55576
56049
  StringInputOptions: typeof StringInputOptions;
55577
56050
  StringResult: typeof StringResult;
55578
56051
  SwitchWorkspaceCommand: typeof SwitchWorkspaceCommand;
56052
+ SymbolInteractiveInserter: typeof SymbolInteractiveInserter;
55579
56053
  SystemConstants: typeof SystemConstants;
55580
56054
  SystemMessage: typeof SystemMessage;
55581
56055
  TOLERANCE: typeof TOLERANCE;
@@ -55645,8 +56119,10 @@ interface VjcadModule {
55645
56119
  addTextReplacementRule: typeof addTextReplacementRule;
55646
56120
  applyDecorators: typeof applyDecorators;
55647
56121
  applyTextReplacements: typeof applyTextReplacements;
56122
+ base64ToUint8Array: typeof base64ToUint8Array;
55648
56123
  boundsIntersect: typeof boundsIntersect;
55649
56124
  buildIndexedString: typeof buildIndexedString;
56125
+ buildSymbolVcadData: typeof buildSymbolVcadData;
55650
56126
  buttonBarStyles: typeof buttonBarStyles;
55651
56127
  buttonStyles: typeof buttonStyles;
55652
56128
  calcForceAngle: typeof calcForceAngle;
@@ -55675,6 +56151,7 @@ interface VjcadModule {
55675
56151
  commandsIcons: typeof commandsIcons;
55676
56152
  commoncss: typeof commoncss;
55677
56153
  compareArrays: typeof compareArrays;
56154
+ compressSymbolData: typeof compressSymbolData;
55678
56155
  containerStyles: typeof containerStyles;
55679
56156
  convertArcToDeviceCoordinates: typeof convertArcToDeviceCoordinates;
55680
56157
  convertGArcToDeviceCoordinates: typeof convertGArcToDeviceCoordinates;
@@ -55702,6 +56179,7 @@ interface VjcadModule {
55702
56179
  darkThemeStyles: typeof darkThemeStyles;
55703
56180
  darkThemeVarsStr: typeof darkThemeVarsStr;
55704
56181
  decodeUnicodeString: typeof decodeUnicodeString;
56182
+ decompressSymbolData: typeof decompressSymbolData;
55705
56183
  decryptFromBase64: typeof decryptFromBase64;
55706
56184
  defaultContextMenuItems: typeof defaultContextMenuItems;
55707
56185
  defaultDocumentTabsConfig: typeof defaultDocumentTabsConfig;
@@ -55728,6 +56206,8 @@ interface VjcadModule {
55728
56206
  entitiesToPolylineVertices: typeof entitiesToPolylineVertices;
55729
56207
  escapeDxfLineEndings: typeof escapeDxfLineEndings;
55730
56208
  expandArc: typeof expandArc;
56209
+ exportEntitiesToImage: typeof exportEntitiesToImage;
56210
+ exportEntitiesToImageAndDownload: typeof exportEntitiesToImageAndDownload;
55731
56211
  extractDefaultExport: typeof extractDefaultExport;
55732
56212
  extractTables: typeof extractTables;
55733
56213
  filterHatchSegments: typeof filterHatchSegments;
@@ -55736,6 +56216,7 @@ interface VjcadModule {
55736
56216
  findLineCircleIntersections: typeof findLineCircleIntersections;
55737
56217
  findPatternMatches: typeof findPatternMatches;
55738
56218
  findSubArray: typeof findSubArray;
56219
+ fitPointsToControlPoints: typeof fitPointsToControlPoints;
55739
56220
  formRowStyles: typeof formRowStyles;
55740
56221
  formatAngleValue: typeof formatAngleValue;
55741
56222
  formatDate: typeof formatDate;
@@ -55745,6 +56226,8 @@ interface VjcadModule {
55745
56226
  funcButtonsIcons: typeof funcButtonsIcons;
55746
56227
  generateHatchPatternLines: typeof generateHatchPatternLines;
55747
56228
  generateRevcloudBulgePoints: typeof generateRevcloudBulgePoints;
56229
+ generateThumbnailFromEntities: typeof generateThumbnailFromEntities;
56230
+ generateThumbnailFromVcadData: typeof generateThumbnailFromVcadData;
55748
56231
  geoBounds: typeof geoBounds;
55749
56232
  geoPoint: typeof geoPoint;
55750
56233
  getAllArrowTypes: typeof getAllArrowTypes;
@@ -55846,6 +56329,7 @@ interface VjcadModule {
55846
56329
  initCadContainer: typeof initCadContainer;
55847
56330
  initLocale: typeof initLocale;
55848
56331
  inputStyles: typeof inputStyles;
56332
+ insertSymbolInteractive: typeof insertSymbolInteractive;
55849
56333
  int2rgb: typeof int2rgb;
55850
56334
  isAllElementsEqual: typeof isAllElementsEqual;
55851
56335
  isArcType: typeof isArcType;
@@ -55879,6 +56363,7 @@ interface VjcadModule {
55879
56363
  matchLocale: typeof matchLocale;
55880
56364
  menubarIcons: typeof menubarIcons;
55881
56365
  mergeBoundingBoxes: typeof mergeBoundingBoxes;
56366
+ mergeSymbolToDocument: typeof mergeSymbolToDocument;
55882
56367
  message: typeof message;
55883
56368
  miscIcons: typeof miscIcons;
55884
56369
  monitorExports: typeof monitorExports;
@@ -55903,6 +56388,7 @@ interface VjcadModule {
55903
56388
  parseMText: typeof parseMText;
55904
56389
  parseMTextToTextObjects: typeof parseMTextToTextObjects;
55905
56390
  parseNumberToStr: typeof parseNumberToStr;
56391
+ parseSymbolVcadData: typeof parseSymbolVcadData;
55906
56392
  parseTileKey: typeof parseTileKey;
55907
56393
  performanceMonitorInstance: typeof performanceMonitorInstance;
55908
56394
  pointInPolygon: typeof pointInPolygon;
@@ -55958,6 +56444,7 @@ interface VjcadModule {
55958
56444
  toPoint2D: typeof toPoint2D;
55959
56445
  transparencyToString: typeof transparencyToString;
55960
56446
  trimWhitespace: typeof trimWhitespace;
56447
+ uint8ArrayToBase64: typeof uint8ArrayToBase64;
55961
56448
  unregisterSidebarPanel: typeof unregisterSidebarPanel;
55962
56449
  unsafeSVGHtml: typeof unsafeSVGHtml;
55963
56450
  updateTimeStamp: typeof updateTimeStamp;