@tscircuit/eval 0.0.295 → 0.0.297
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 +4 -0
- package/dist/lib/index.d.ts +4 -0
- package/dist/webworker/entrypoint.js +171 -171
- package/package.json +5 -5
package/dist/eval/index.d.ts
CHANGED
|
@@ -1466,6 +1466,8 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
1466
1466
|
pin_number?: number | undefined;
|
|
1467
1467
|
display_pin_label?: string | undefined;
|
|
1468
1468
|
is_connected?: boolean | undefined;
|
|
1469
|
+
has_input_arrow?: boolean | undefined;
|
|
1470
|
+
has_output_arrow?: boolean | undefined;
|
|
1469
1471
|
} | {
|
|
1470
1472
|
type: "schematic_trace";
|
|
1471
1473
|
source_trace_id: string;
|
|
@@ -3067,6 +3069,8 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3067
3069
|
pin_number?: number | undefined;
|
|
3068
3070
|
display_pin_label?: string | undefined;
|
|
3069
3071
|
is_connected?: boolean | undefined;
|
|
3072
|
+
has_input_arrow?: boolean | undefined;
|
|
3073
|
+
has_output_arrow?: boolean | undefined;
|
|
3070
3074
|
} | {
|
|
3071
3075
|
type: "schematic_trace";
|
|
3072
3076
|
source_trace_id: string;
|
package/dist/lib/index.d.ts
CHANGED
|
@@ -1481,6 +1481,8 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
1481
1481
|
pin_number?: number | undefined;
|
|
1482
1482
|
display_pin_label?: string | undefined;
|
|
1483
1483
|
is_connected?: boolean | undefined;
|
|
1484
|
+
has_input_arrow?: boolean | undefined;
|
|
1485
|
+
has_output_arrow?: boolean | undefined;
|
|
1484
1486
|
} | {
|
|
1485
1487
|
type: "schematic_trace";
|
|
1486
1488
|
source_trace_id: string;
|
|
@@ -3082,6 +3084,8 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3082
3084
|
pin_number?: number | undefined;
|
|
3083
3085
|
display_pin_label?: string | undefined;
|
|
3084
3086
|
is_connected?: boolean | undefined;
|
|
3087
|
+
has_input_arrow?: boolean | undefined;
|
|
3088
|
+
has_output_arrow?: boolean | undefined;
|
|
3085
3089
|
} | {
|
|
3086
3090
|
type: "schematic_trace";
|
|
3087
3091
|
source_trace_id: string;
|