@tscircuit/eval 0.0.469 → 0.0.471
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/blob-url.js +1 -1
- package/dist/eval/index.d.ts +8 -0
- package/dist/lib/index.d.ts +8 -0
- package/dist/webworker/entrypoint.js +148 -148
- package/package.json +6 -4
package/dist/eval/index.d.ts
CHANGED
|
@@ -1274,6 +1274,10 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
1274
1274
|
type: "pcb_panel";
|
|
1275
1275
|
width: number;
|
|
1276
1276
|
height: number;
|
|
1277
|
+
center: {
|
|
1278
|
+
x: number;
|
|
1279
|
+
y: number;
|
|
1280
|
+
};
|
|
1277
1281
|
pcb_panel_id: string;
|
|
1278
1282
|
covered_with_solder_mask: boolean;
|
|
1279
1283
|
} | {
|
|
@@ -3451,6 +3455,10 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3451
3455
|
type: "pcb_panel";
|
|
3452
3456
|
width: number;
|
|
3453
3457
|
height: number;
|
|
3458
|
+
center: {
|
|
3459
|
+
x: number;
|
|
3460
|
+
y: number;
|
|
3461
|
+
};
|
|
3454
3462
|
pcb_panel_id: string;
|
|
3455
3463
|
covered_with_solder_mask: boolean;
|
|
3456
3464
|
} | {
|
package/dist/lib/index.d.ts
CHANGED
|
@@ -1290,6 +1290,10 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
1290
1290
|
type: "pcb_panel";
|
|
1291
1291
|
width: number;
|
|
1292
1292
|
height: number;
|
|
1293
|
+
center: {
|
|
1294
|
+
x: number;
|
|
1295
|
+
y: number;
|
|
1296
|
+
};
|
|
1293
1297
|
pcb_panel_id: string;
|
|
1294
1298
|
covered_with_solder_mask: boolean;
|
|
1295
1299
|
} | {
|
|
@@ -3467,6 +3471,10 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3467
3471
|
type: "pcb_panel";
|
|
3468
3472
|
width: number;
|
|
3469
3473
|
height: number;
|
|
3474
|
+
center: {
|
|
3475
|
+
x: number;
|
|
3476
|
+
y: number;
|
|
3477
|
+
};
|
|
3470
3478
|
pcb_panel_id: string;
|
|
3471
3479
|
covered_with_solder_mask: boolean;
|
|
3472
3480
|
} | {
|