@tscircuit/eval 0.0.457 → 0.0.458
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 +2 -0
- package/dist/lib/index.d.ts +2 -0
- package/dist/webworker/entrypoint.js +103 -103
- package/package.json +3 -3
package/dist/eval/index.d.ts
CHANGED
|
@@ -1243,6 +1243,7 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
1243
1243
|
width?: number | undefined;
|
|
1244
1244
|
height?: number | undefined;
|
|
1245
1245
|
subcircuit_id?: string | undefined;
|
|
1246
|
+
shape?: "rect" | "polygon" | undefined;
|
|
1246
1247
|
pcb_panel_id?: string | undefined;
|
|
1247
1248
|
is_subcircuit?: boolean | undefined;
|
|
1248
1249
|
outline?: {
|
|
@@ -3399,6 +3400,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3399
3400
|
width?: number | undefined;
|
|
3400
3401
|
height?: number | undefined;
|
|
3401
3402
|
subcircuit_id?: string | undefined;
|
|
3403
|
+
shape?: "rect" | "polygon" | undefined;
|
|
3402
3404
|
pcb_panel_id?: string | undefined;
|
|
3403
3405
|
is_subcircuit?: boolean | undefined;
|
|
3404
3406
|
outline?: {
|
package/dist/lib/index.d.ts
CHANGED
|
@@ -1259,6 +1259,7 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
1259
1259
|
width?: number | undefined;
|
|
1260
1260
|
height?: number | undefined;
|
|
1261
1261
|
subcircuit_id?: string | undefined;
|
|
1262
|
+
shape?: "rect" | "polygon" | undefined;
|
|
1262
1263
|
pcb_panel_id?: string | undefined;
|
|
1263
1264
|
is_subcircuit?: boolean | undefined;
|
|
1264
1265
|
outline?: {
|
|
@@ -3415,6 +3416,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3415
3416
|
width?: number | undefined;
|
|
3416
3417
|
height?: number | undefined;
|
|
3417
3418
|
subcircuit_id?: string | undefined;
|
|
3419
|
+
shape?: "rect" | "polygon" | undefined;
|
|
3418
3420
|
pcb_panel_id?: string | undefined;
|
|
3419
3421
|
is_subcircuit?: boolean | undefined;
|
|
3420
3422
|
outline?: {
|