@tscircuit/eval 0.0.1043 → 0.0.1044
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 +7 -7
- package/package.json +4 -4
package/dist/eval/index.d.ts
CHANGED
|
@@ -4460,6 +4460,21 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
4460
4460
|
schematic_manual_edit_conflict_warning_id: string;
|
|
4461
4461
|
subcircuit_id?: string | undefined;
|
|
4462
4462
|
schematic_group_id?: string | undefined;
|
|
4463
|
+
} | {
|
|
4464
|
+
message: string;
|
|
4465
|
+
type: "schematic_component_overlap_warning";
|
|
4466
|
+
warning_type: "schematic_component_overlap_warning";
|
|
4467
|
+
schematic_component_overlap_warning_id: string;
|
|
4468
|
+
schematic_component_ids: [string, string];
|
|
4469
|
+
schematic_sheet_id?: string | undefined;
|
|
4470
|
+
} | {
|
|
4471
|
+
message: string;
|
|
4472
|
+
type: "schematic_element_outside_sheet_warning";
|
|
4473
|
+
warning_type: "schematic_element_outside_sheet_warning";
|
|
4474
|
+
schematic_sheet_id: string;
|
|
4475
|
+
schematic_element_outside_sheet_warning_id: string;
|
|
4476
|
+
schematic_element_type: "schematic_component" | "schematic_trace" | "schematic_net_label";
|
|
4477
|
+
schematic_element_id: string;
|
|
4463
4478
|
} | {
|
|
4464
4479
|
type: "schematic_group";
|
|
4465
4480
|
width: number;
|
|
@@ -9035,6 +9050,21 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
9035
9050
|
schematic_manual_edit_conflict_warning_id: string;
|
|
9036
9051
|
subcircuit_id?: string | undefined;
|
|
9037
9052
|
schematic_group_id?: string | undefined;
|
|
9053
|
+
} | {
|
|
9054
|
+
message: string;
|
|
9055
|
+
type: "schematic_component_overlap_warning";
|
|
9056
|
+
warning_type: "schematic_component_overlap_warning";
|
|
9057
|
+
schematic_component_overlap_warning_id: string;
|
|
9058
|
+
schematic_component_ids: [string, string];
|
|
9059
|
+
schematic_sheet_id?: string | undefined;
|
|
9060
|
+
} | {
|
|
9061
|
+
message: string;
|
|
9062
|
+
type: "schematic_element_outside_sheet_warning";
|
|
9063
|
+
warning_type: "schematic_element_outside_sheet_warning";
|
|
9064
|
+
schematic_sheet_id: string;
|
|
9065
|
+
schematic_element_outside_sheet_warning_id: string;
|
|
9066
|
+
schematic_element_type: "schematic_component" | "schematic_trace" | "schematic_net_label";
|
|
9067
|
+
schematic_element_id: string;
|
|
9038
9068
|
} | {
|
|
9039
9069
|
type: "schematic_group";
|
|
9040
9070
|
width: number;
|
package/dist/lib/index.d.ts
CHANGED
|
@@ -4476,6 +4476,21 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
4476
4476
|
schematic_manual_edit_conflict_warning_id: string;
|
|
4477
4477
|
subcircuit_id?: string | undefined;
|
|
4478
4478
|
schematic_group_id?: string | undefined;
|
|
4479
|
+
} | {
|
|
4480
|
+
message: string;
|
|
4481
|
+
type: "schematic_component_overlap_warning";
|
|
4482
|
+
warning_type: "schematic_component_overlap_warning";
|
|
4483
|
+
schematic_component_overlap_warning_id: string;
|
|
4484
|
+
schematic_component_ids: [string, string];
|
|
4485
|
+
schematic_sheet_id?: string | undefined;
|
|
4486
|
+
} | {
|
|
4487
|
+
message: string;
|
|
4488
|
+
type: "schematic_element_outside_sheet_warning";
|
|
4489
|
+
warning_type: "schematic_element_outside_sheet_warning";
|
|
4490
|
+
schematic_sheet_id: string;
|
|
4491
|
+
schematic_element_outside_sheet_warning_id: string;
|
|
4492
|
+
schematic_element_type: "schematic_component" | "schematic_trace" | "schematic_net_label";
|
|
4493
|
+
schematic_element_id: string;
|
|
4479
4494
|
} | {
|
|
4480
4495
|
type: "schematic_group";
|
|
4481
4496
|
width: number;
|
|
@@ -9051,6 +9066,21 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
9051
9066
|
schematic_manual_edit_conflict_warning_id: string;
|
|
9052
9067
|
subcircuit_id?: string | undefined;
|
|
9053
9068
|
schematic_group_id?: string | undefined;
|
|
9069
|
+
} | {
|
|
9070
|
+
message: string;
|
|
9071
|
+
type: "schematic_component_overlap_warning";
|
|
9072
|
+
warning_type: "schematic_component_overlap_warning";
|
|
9073
|
+
schematic_component_overlap_warning_id: string;
|
|
9074
|
+
schematic_component_ids: [string, string];
|
|
9075
|
+
schematic_sheet_id?: string | undefined;
|
|
9076
|
+
} | {
|
|
9077
|
+
message: string;
|
|
9078
|
+
type: "schematic_element_outside_sheet_warning";
|
|
9079
|
+
warning_type: "schematic_element_outside_sheet_warning";
|
|
9080
|
+
schematic_sheet_id: string;
|
|
9081
|
+
schematic_element_outside_sheet_warning_id: string;
|
|
9082
|
+
schematic_element_type: "schematic_component" | "schematic_trace" | "schematic_net_label";
|
|
9083
|
+
schematic_element_id: string;
|
|
9054
9084
|
} | {
|
|
9055
9085
|
type: "schematic_group";
|
|
9056
9086
|
width: number;
|