@tscircuit/eval 0.0.291 → 0.0.292
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 +16 -0
- package/dist/lib/index.d.ts +16 -0
- package/dist/webworker/entrypoint.js +360 -360
- package/package.json +7 -6
package/dist/eval/index.d.ts
CHANGED
|
@@ -405,6 +405,14 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
405
405
|
source_group_id?: string | undefined;
|
|
406
406
|
connected_source_port_ids?: string[] | undefined;
|
|
407
407
|
selectors_not_found?: string[] | undefined;
|
|
408
|
+
} | {
|
|
409
|
+
message: string;
|
|
410
|
+
type: "source_property_ignored_warning";
|
|
411
|
+
source_component_id: string;
|
|
412
|
+
error_type: "source_property_ignored_warning";
|
|
413
|
+
property_name: string;
|
|
414
|
+
source_property_ignored_warning_id: string;
|
|
415
|
+
subcircuit_id?: string | undefined;
|
|
408
416
|
} | {
|
|
409
417
|
type: "source_net";
|
|
410
418
|
name: string;
|
|
@@ -1981,6 +1989,14 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
1981
1989
|
source_group_id?: string | undefined;
|
|
1982
1990
|
connected_source_port_ids?: string[] | undefined;
|
|
1983
1991
|
selectors_not_found?: string[] | undefined;
|
|
1992
|
+
} | {
|
|
1993
|
+
message: string;
|
|
1994
|
+
type: "source_property_ignored_warning";
|
|
1995
|
+
source_component_id: string;
|
|
1996
|
+
error_type: "source_property_ignored_warning";
|
|
1997
|
+
property_name: string;
|
|
1998
|
+
source_property_ignored_warning_id: string;
|
|
1999
|
+
subcircuit_id?: string | undefined;
|
|
1984
2000
|
} | {
|
|
1985
2001
|
type: "source_net";
|
|
1986
2002
|
name: string;
|
package/dist/lib/index.d.ts
CHANGED
|
@@ -420,6 +420,14 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
420
420
|
source_group_id?: string | undefined;
|
|
421
421
|
connected_source_port_ids?: string[] | undefined;
|
|
422
422
|
selectors_not_found?: string[] | undefined;
|
|
423
|
+
} | {
|
|
424
|
+
message: string;
|
|
425
|
+
type: "source_property_ignored_warning";
|
|
426
|
+
source_component_id: string;
|
|
427
|
+
error_type: "source_property_ignored_warning";
|
|
428
|
+
property_name: string;
|
|
429
|
+
source_property_ignored_warning_id: string;
|
|
430
|
+
subcircuit_id?: string | undefined;
|
|
423
431
|
} | {
|
|
424
432
|
type: "source_net";
|
|
425
433
|
name: string;
|
|
@@ -1996,6 +2004,14 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
1996
2004
|
source_group_id?: string | undefined;
|
|
1997
2005
|
connected_source_port_ids?: string[] | undefined;
|
|
1998
2006
|
selectors_not_found?: string[] | undefined;
|
|
2007
|
+
} | {
|
|
2008
|
+
message: string;
|
|
2009
|
+
type: "source_property_ignored_warning";
|
|
2010
|
+
source_component_id: string;
|
|
2011
|
+
error_type: "source_property_ignored_warning";
|
|
2012
|
+
property_name: string;
|
|
2013
|
+
source_property_ignored_warning_id: string;
|
|
2014
|
+
subcircuit_id?: string | undefined;
|
|
1999
2015
|
} | {
|
|
2000
2016
|
type: "source_net";
|
|
2001
2017
|
name: string;
|