@tscircuit/eval 0.0.478 → 0.0.479
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/eval/index.js +11 -3
- package/dist/lib/index.d.ts +2 -0
- package/dist/lib/index.js +11 -3
- package/dist/webworker/entrypoint.js +178 -178
- package/package.json +2 -2
package/dist/lib/index.d.ts
CHANGED
|
@@ -1771,6 +1771,7 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
1771
1771
|
rotation?: number | undefined;
|
|
1772
1772
|
subcircuit_id?: string | undefined;
|
|
1773
1773
|
pcb_group_id?: string | undefined;
|
|
1774
|
+
corner_radius?: number | undefined;
|
|
1774
1775
|
pcb_board_id?: string | undefined;
|
|
1775
1776
|
pcb_panel_id?: string | undefined;
|
|
1776
1777
|
} | {
|
|
@@ -4031,6 +4032,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
4031
4032
|
rotation?: number | undefined;
|
|
4032
4033
|
subcircuit_id?: string | undefined;
|
|
4033
4034
|
pcb_group_id?: string | undefined;
|
|
4035
|
+
corner_radius?: number | undefined;
|
|
4034
4036
|
pcb_board_id?: string | undefined;
|
|
4035
4037
|
pcb_panel_id?: string | undefined;
|
|
4036
4038
|
} | {
|