mxcad 1.0.45 → 1.0.47
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/mxcad.d.ts +1 -1
- package/dist/mxcad.es.js +245 -255
- package/dist/mxcad.umd.js +34 -34
- package/dist/wasm/2d-st/mxdrawassembly_min.js +422 -0
- package/dist/wasm/2d-st/mxdrawassembly_min.wasm +0 -0
- package/package.json +6 -3
package/dist/mxcad.d.ts
CHANGED
|
@@ -1577,7 +1577,7 @@ export interface MxDraw3d extends WasmConfig {
|
|
|
1577
1577
|
open3DFile: (file: File) => void;
|
|
1578
1578
|
}
|
|
1579
1579
|
export declare let MxCpp: MxCppType;
|
|
1580
|
-
export declare function loadMxCADassembly(call: (MxCpp: MxCppType) => void, locateFile?: (wasmURL: string, baseURL?: string | URL) => string, wasmBinary?: ArrayBuffer): Promise<void>;
|
|
1580
|
+
export declare function loadMxCADassembly(call: (MxCpp: MxCppType) => void, locateFile?: (wasmURL: string, baseURL?: string | URL) => string | URL, wasmBinary?: ArrayBuffer): Promise<void>;
|
|
1581
1581
|
export declare function loadMxCADassembly3d(config: MxDraw3dConfig, call?: (mxDraw3d: MxDraw3d) => void): Promise<MxDraw3d>;
|
|
1582
1582
|
|
|
1583
1583
|
export {};
|