@tscircuit/eval 0.0.275 → 0.0.276
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/eval/index.d.ts
CHANGED
|
@@ -1069,6 +1069,7 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
1069
1069
|
name?: string | undefined;
|
|
1070
1070
|
subcircuit_id?: string | undefined;
|
|
1071
1071
|
is_subcircuit?: boolean | undefined;
|
|
1072
|
+
layout_mode?: string | undefined;
|
|
1072
1073
|
autorouter_configuration?: {
|
|
1073
1074
|
trace_clearance: number;
|
|
1074
1075
|
} | undefined;
|
|
@@ -1609,6 +1610,8 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
1609
1610
|
simulation_voltage_source_id: string;
|
|
1610
1611
|
positive_source_port_id: string;
|
|
1611
1612
|
negative_source_port_id: string;
|
|
1613
|
+
positive_source_net_id: string;
|
|
1614
|
+
negative_source_net_id: string;
|
|
1612
1615
|
})[]>;
|
|
1613
1616
|
|
|
1614
1617
|
declare const runTscircuitModule: (module: string, opts?: {
|
|
@@ -2607,6 +2610,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
2607
2610
|
name?: string | undefined;
|
|
2608
2611
|
subcircuit_id?: string | undefined;
|
|
2609
2612
|
is_subcircuit?: boolean | undefined;
|
|
2613
|
+
layout_mode?: string | undefined;
|
|
2610
2614
|
autorouter_configuration?: {
|
|
2611
2615
|
trace_clearance: number;
|
|
2612
2616
|
} | undefined;
|
|
@@ -3147,6 +3151,8 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3147
3151
|
simulation_voltage_source_id: string;
|
|
3148
3152
|
positive_source_port_id: string;
|
|
3149
3153
|
negative_source_port_id: string;
|
|
3154
|
+
positive_source_net_id: string;
|
|
3155
|
+
negative_source_net_id: string;
|
|
3150
3156
|
})[]>;
|
|
3151
3157
|
|
|
3152
3158
|
export { CircuitRunner, runTscircuitCode, runTscircuitModule };
|
package/dist/lib/index.d.ts
CHANGED
|
@@ -1083,6 +1083,7 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
1083
1083
|
name?: string | undefined;
|
|
1084
1084
|
subcircuit_id?: string | undefined;
|
|
1085
1085
|
is_subcircuit?: boolean | undefined;
|
|
1086
|
+
layout_mode?: string | undefined;
|
|
1086
1087
|
autorouter_configuration?: {
|
|
1087
1088
|
trace_clearance: number;
|
|
1088
1089
|
} | undefined;
|
|
@@ -1623,6 +1624,8 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
1623
1624
|
simulation_voltage_source_id: string;
|
|
1624
1625
|
positive_source_port_id: string;
|
|
1625
1626
|
negative_source_port_id: string;
|
|
1627
|
+
positive_source_net_id: string;
|
|
1628
|
+
negative_source_net_id: string;
|
|
1626
1629
|
})[]>;
|
|
1627
1630
|
|
|
1628
1631
|
declare const runTscircuitModule: (module: string, opts?: {
|
|
@@ -2621,6 +2624,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
2621
2624
|
name?: string | undefined;
|
|
2622
2625
|
subcircuit_id?: string | undefined;
|
|
2623
2626
|
is_subcircuit?: boolean | undefined;
|
|
2627
|
+
layout_mode?: string | undefined;
|
|
2624
2628
|
autorouter_configuration?: {
|
|
2625
2629
|
trace_clearance: number;
|
|
2626
2630
|
} | undefined;
|
|
@@ -3161,6 +3165,8 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3161
3165
|
simulation_voltage_source_id: string;
|
|
3162
3166
|
positive_source_port_id: string;
|
|
3163
3167
|
negative_source_port_id: string;
|
|
3168
|
+
positive_source_net_id: string;
|
|
3169
|
+
negative_source_net_id: string;
|
|
3164
3170
|
})[]>;
|
|
3165
3171
|
|
|
3166
3172
|
declare const getImportsFromCode: (code: string) => string[];
|