@tscircuit/eval 0.0.876 → 0.0.877
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 +30 -0
- package/dist/lib/index.d.ts +30 -0
- package/dist/webworker/entrypoint.js +4 -4
- package/package.json +4 -4
package/dist/eval/index.d.ts
CHANGED
|
@@ -2672,6 +2672,21 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
2672
2672
|
subcircuit_id?: string | undefined;
|
|
2673
2673
|
pcb_group_id?: string | undefined;
|
|
2674
2674
|
color?: string | undefined;
|
|
2675
|
+
} | {
|
|
2676
|
+
type: "pcb_courtyard_pill";
|
|
2677
|
+
width: number;
|
|
2678
|
+
height: number;
|
|
2679
|
+
layer: "top" | "bottom";
|
|
2680
|
+
center: {
|
|
2681
|
+
x: number;
|
|
2682
|
+
y: number;
|
|
2683
|
+
};
|
|
2684
|
+
pcb_component_id: string;
|
|
2685
|
+
radius: number;
|
|
2686
|
+
pcb_courtyard_pill_id: string;
|
|
2687
|
+
subcircuit_id?: string | undefined;
|
|
2688
|
+
pcb_group_id?: string | undefined;
|
|
2689
|
+
color?: string | undefined;
|
|
2675
2690
|
} | {
|
|
2676
2691
|
x: number;
|
|
2677
2692
|
y: number;
|
|
@@ -7063,6 +7078,21 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
7063
7078
|
subcircuit_id?: string | undefined;
|
|
7064
7079
|
pcb_group_id?: string | undefined;
|
|
7065
7080
|
color?: string | undefined;
|
|
7081
|
+
} | {
|
|
7082
|
+
type: "pcb_courtyard_pill";
|
|
7083
|
+
width: number;
|
|
7084
|
+
height: number;
|
|
7085
|
+
layer: "top" | "bottom";
|
|
7086
|
+
center: {
|
|
7087
|
+
x: number;
|
|
7088
|
+
y: number;
|
|
7089
|
+
};
|
|
7090
|
+
pcb_component_id: string;
|
|
7091
|
+
radius: number;
|
|
7092
|
+
pcb_courtyard_pill_id: string;
|
|
7093
|
+
subcircuit_id?: string | undefined;
|
|
7094
|
+
pcb_group_id?: string | undefined;
|
|
7095
|
+
color?: string | undefined;
|
|
7066
7096
|
} | {
|
|
7067
7097
|
x: number;
|
|
7068
7098
|
y: number;
|
package/dist/lib/index.d.ts
CHANGED
|
@@ -2688,6 +2688,21 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
2688
2688
|
subcircuit_id?: string | undefined;
|
|
2689
2689
|
pcb_group_id?: string | undefined;
|
|
2690
2690
|
color?: string | undefined;
|
|
2691
|
+
} | {
|
|
2692
|
+
type: "pcb_courtyard_pill";
|
|
2693
|
+
width: number;
|
|
2694
|
+
height: number;
|
|
2695
|
+
layer: "top" | "bottom";
|
|
2696
|
+
center: {
|
|
2697
|
+
x: number;
|
|
2698
|
+
y: number;
|
|
2699
|
+
};
|
|
2700
|
+
pcb_component_id: string;
|
|
2701
|
+
radius: number;
|
|
2702
|
+
pcb_courtyard_pill_id: string;
|
|
2703
|
+
subcircuit_id?: string | undefined;
|
|
2704
|
+
pcb_group_id?: string | undefined;
|
|
2705
|
+
color?: string | undefined;
|
|
2691
2706
|
} | {
|
|
2692
2707
|
x: number;
|
|
2693
2708
|
y: number;
|
|
@@ -7079,6 +7094,21 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
7079
7094
|
subcircuit_id?: string | undefined;
|
|
7080
7095
|
pcb_group_id?: string | undefined;
|
|
7081
7096
|
color?: string | undefined;
|
|
7097
|
+
} | {
|
|
7098
|
+
type: "pcb_courtyard_pill";
|
|
7099
|
+
width: number;
|
|
7100
|
+
height: number;
|
|
7101
|
+
layer: "top" | "bottom";
|
|
7102
|
+
center: {
|
|
7103
|
+
x: number;
|
|
7104
|
+
y: number;
|
|
7105
|
+
};
|
|
7106
|
+
pcb_component_id: string;
|
|
7107
|
+
radius: number;
|
|
7108
|
+
pcb_courtyard_pill_id: string;
|
|
7109
|
+
subcircuit_id?: string | undefined;
|
|
7110
|
+
pcb_group_id?: string | undefined;
|
|
7111
|
+
color?: string | undefined;
|
|
7082
7112
|
} | {
|
|
7083
7113
|
x: number;
|
|
7084
7114
|
y: number;
|