@tscircuit/eval 0.0.607 → 0.0.608
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 +2 -0
- package/dist/lib/index.d.ts +2 -0
- package/dist/webworker/entrypoint.js +5 -5
- package/package.json +5 -5
package/dist/eval/index.d.ts
CHANGED
|
@@ -2340,6 +2340,7 @@ 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;
|
|
2345
2346
|
} | {
|
|
@@ -4825,6 +4826,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
4825
4826
|
}[];
|
|
4826
4827
|
schematic_component_id: string;
|
|
4827
4828
|
subcircuit_id?: string | undefined;
|
|
4829
|
+
stroke_width?: number | null | undefined;
|
|
4828
4830
|
is_filled?: boolean | undefined;
|
|
4829
4831
|
fill_color?: "red" | "blue" | undefined;
|
|
4830
4832
|
} | {
|
package/dist/lib/index.d.ts
CHANGED
|
@@ -2356,6 +2356,7 @@ 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;
|
|
2361
2362
|
} | {
|
|
@@ -4841,6 +4842,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
4841
4842
|
}[];
|
|
4842
4843
|
schematic_component_id: string;
|
|
4843
4844
|
subcircuit_id?: string | undefined;
|
|
4845
|
+
stroke_width?: number | null | undefined;
|
|
4844
4846
|
is_filled?: boolean | undefined;
|
|
4845
4847
|
fill_color?: "red" | "blue" | undefined;
|
|
4846
4848
|
} | {
|