@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/eval/index.d.ts
CHANGED
|
@@ -1755,6 +1755,7 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
1755
1755
|
rotation?: number | undefined;
|
|
1756
1756
|
subcircuit_id?: string | undefined;
|
|
1757
1757
|
pcb_group_id?: string | undefined;
|
|
1758
|
+
corner_radius?: number | undefined;
|
|
1758
1759
|
pcb_board_id?: string | undefined;
|
|
1759
1760
|
pcb_panel_id?: string | undefined;
|
|
1760
1761
|
} | {
|
|
@@ -4015,6 +4016,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
4015
4016
|
rotation?: number | undefined;
|
|
4016
4017
|
subcircuit_id?: string | undefined;
|
|
4017
4018
|
pcb_group_id?: string | undefined;
|
|
4019
|
+
corner_radius?: number | undefined;
|
|
4018
4020
|
pcb_board_id?: string | undefined;
|
|
4019
4021
|
pcb_panel_id?: string | undefined;
|
|
4020
4022
|
} | {
|