@tscircuit/eval 0.0.1036 → 0.0.1037
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 +4 -0
- package/dist/lib/index.d.ts +4 -0
- package/dist/webworker/entrypoint.js +4 -4
- package/package.json +3 -3
package/dist/eval/index.d.ts
CHANGED
|
@@ -4318,6 +4318,8 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
4318
4318
|
pin_number?: number | undefined;
|
|
4319
4319
|
display_pin_label?: string | undefined;
|
|
4320
4320
|
is_connected?: boolean | undefined;
|
|
4321
|
+
is_internal_circuit_port?: boolean | undefined;
|
|
4322
|
+
is_overlapping_internal_circuit_port?: boolean | undefined;
|
|
4321
4323
|
has_input_arrow?: boolean | undefined;
|
|
4322
4324
|
has_output_arrow?: boolean | undefined;
|
|
4323
4325
|
is_drawn_with_inversion_circle?: boolean | undefined;
|
|
@@ -8891,6 +8893,8 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
8891
8893
|
pin_number?: number | undefined;
|
|
8892
8894
|
display_pin_label?: string | undefined;
|
|
8893
8895
|
is_connected?: boolean | undefined;
|
|
8896
|
+
is_internal_circuit_port?: boolean | undefined;
|
|
8897
|
+
is_overlapping_internal_circuit_port?: boolean | undefined;
|
|
8894
8898
|
has_input_arrow?: boolean | undefined;
|
|
8895
8899
|
has_output_arrow?: boolean | undefined;
|
|
8896
8900
|
is_drawn_with_inversion_circle?: boolean | undefined;
|
package/dist/lib/index.d.ts
CHANGED
|
@@ -4334,6 +4334,8 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
4334
4334
|
pin_number?: number | undefined;
|
|
4335
4335
|
display_pin_label?: string | undefined;
|
|
4336
4336
|
is_connected?: boolean | undefined;
|
|
4337
|
+
is_internal_circuit_port?: boolean | undefined;
|
|
4338
|
+
is_overlapping_internal_circuit_port?: boolean | undefined;
|
|
4337
4339
|
has_input_arrow?: boolean | undefined;
|
|
4338
4340
|
has_output_arrow?: boolean | undefined;
|
|
4339
4341
|
is_drawn_with_inversion_circle?: boolean | undefined;
|
|
@@ -8907,6 +8909,8 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
8907
8909
|
pin_number?: number | undefined;
|
|
8908
8910
|
display_pin_label?: string | undefined;
|
|
8909
8911
|
is_connected?: boolean | undefined;
|
|
8912
|
+
is_internal_circuit_port?: boolean | undefined;
|
|
8913
|
+
is_overlapping_internal_circuit_port?: boolean | undefined;
|
|
8910
8914
|
has_input_arrow?: boolean | undefined;
|
|
8911
8915
|
has_output_arrow?: boolean | undefined;
|
|
8912
8916
|
is_drawn_with_inversion_circle?: boolean | undefined;
|