easyeda 0.0.22 → 0.0.24
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/cli/main.cjs +40 -10
- package/dist/cli/main.cjs.map +1 -1
- package/dist/lib/index.cjs +24 -6
- package/dist/lib/index.cjs.map +1 -1
- package/dist/lib/index.d.cts +1 -1
- package/package.json +1 -1
package/dist/lib/index.d.cts
CHANGED
|
@@ -1756,7 +1756,7 @@ declare const convertEasyEdaJsonToTscircuitSoupJson: (easyEdaJson: EasyEdaJson,
|
|
|
1756
1756
|
|
|
1757
1757
|
declare function fetchEasyEDAComponent(jlcpcbPartNumber: string): Promise<any>;
|
|
1758
1758
|
|
|
1759
|
-
declare const convertRawEasyEdaToTs: (rawEasy: any) => string
|
|
1759
|
+
declare const convertRawEasyEdaToTs: (rawEasy: any) => Promise<string>;
|
|
1760
1760
|
|
|
1761
1761
|
declare function normalizeManufacturerPartNumber(partNumber: string): string;
|
|
1762
1762
|
|