@tscircuit/eval 0.0.607 → 0.0.609
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 +6 -0
- package/dist/lib/index.d.ts +6 -0
- package/dist/webworker/entrypoint.js +124 -121
- package/package.json +5 -5
package/dist/eval/index.d.ts
CHANGED
|
@@ -2340,8 +2340,11 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
2340
2340
|
}[];
|
|
2341
2341
|
schematic_component_id: string;
|
|
2342
2342
|
subcircuit_id?: string | undefined;
|
|
2343
|
+
stroke_width?: number | null | undefined;
|
|
2343
2344
|
is_filled?: boolean | undefined;
|
|
2344
2345
|
fill_color?: "red" | "blue" | undefined;
|
|
2346
|
+
stroke_color?: string | undefined;
|
|
2347
|
+
svg_path?: string | undefined;
|
|
2345
2348
|
} | {
|
|
2346
2349
|
message: string;
|
|
2347
2350
|
type: "schematic_error";
|
|
@@ -4825,8 +4828,11 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
4825
4828
|
}[];
|
|
4826
4829
|
schematic_component_id: string;
|
|
4827
4830
|
subcircuit_id?: string | undefined;
|
|
4831
|
+
stroke_width?: number | null | undefined;
|
|
4828
4832
|
is_filled?: boolean | undefined;
|
|
4829
4833
|
fill_color?: "red" | "blue" | undefined;
|
|
4834
|
+
stroke_color?: string | undefined;
|
|
4835
|
+
svg_path?: string | undefined;
|
|
4830
4836
|
} | {
|
|
4831
4837
|
message: string;
|
|
4832
4838
|
type: "schematic_error";
|
package/dist/lib/index.d.ts
CHANGED
|
@@ -2356,8 +2356,11 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
2356
2356
|
}[];
|
|
2357
2357
|
schematic_component_id: string;
|
|
2358
2358
|
subcircuit_id?: string | undefined;
|
|
2359
|
+
stroke_width?: number | null | undefined;
|
|
2359
2360
|
is_filled?: boolean | undefined;
|
|
2360
2361
|
fill_color?: "red" | "blue" | undefined;
|
|
2362
|
+
stroke_color?: string | undefined;
|
|
2363
|
+
svg_path?: string | undefined;
|
|
2361
2364
|
} | {
|
|
2362
2365
|
message: string;
|
|
2363
2366
|
type: "schematic_error";
|
|
@@ -4841,8 +4844,11 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
4841
4844
|
}[];
|
|
4842
4845
|
schematic_component_id: string;
|
|
4843
4846
|
subcircuit_id?: string | undefined;
|
|
4847
|
+
stroke_width?: number | null | undefined;
|
|
4844
4848
|
is_filled?: boolean | undefined;
|
|
4845
4849
|
fill_color?: "red" | "blue" | undefined;
|
|
4850
|
+
stroke_color?: string | undefined;
|
|
4851
|
+
svg_path?: string | undefined;
|
|
4846
4852
|
} | {
|
|
4847
4853
|
message: string;
|
|
4848
4854
|
type: "schematic_error";
|