@tscircuit/eval 0.0.327 → 0.0.329
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 +257 -257
- package/package.json +5 -5
package/dist/eval/index.d.ts
CHANGED
|
@@ -1628,6 +1628,7 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
1628
1628
|
width: number;
|
|
1629
1629
|
height: number;
|
|
1630
1630
|
};
|
|
1631
|
+
is_box_with_pins: boolean;
|
|
1631
1632
|
source_component_id?: string | undefined;
|
|
1632
1633
|
subcircuit_id?: string | undefined;
|
|
1633
1634
|
source_group_id?: string | undefined;
|
|
@@ -3447,6 +3448,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3447
3448
|
width: number;
|
|
3448
3449
|
height: number;
|
|
3449
3450
|
};
|
|
3451
|
+
is_box_with_pins: boolean;
|
|
3450
3452
|
source_component_id?: string | undefined;
|
|
3451
3453
|
subcircuit_id?: string | undefined;
|
|
3452
3454
|
source_group_id?: string | undefined;
|
package/dist/lib/index.d.ts
CHANGED
|
@@ -1644,6 +1644,7 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
1644
1644
|
width: number;
|
|
1645
1645
|
height: number;
|
|
1646
1646
|
};
|
|
1647
|
+
is_box_with_pins: boolean;
|
|
1647
1648
|
source_component_id?: string | undefined;
|
|
1648
1649
|
subcircuit_id?: string | undefined;
|
|
1649
1650
|
source_group_id?: string | undefined;
|
|
@@ -3463,6 +3464,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3463
3464
|
width: number;
|
|
3464
3465
|
height: number;
|
|
3465
3466
|
};
|
|
3467
|
+
is_box_with_pins: boolean;
|
|
3466
3468
|
source_component_id?: string | undefined;
|
|
3467
3469
|
subcircuit_id?: string | undefined;
|
|
3468
3470
|
source_group_id?: string | undefined;
|