@tscircuit/core 0.0.645 → 0.0.647
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/index.d.ts +3 -0
- package/dist/index.js +1074 -333
- package/package.json +4 -2
package/dist/index.d.ts
CHANGED
|
@@ -202,6 +202,7 @@ declare class RootCircuit {
|
|
|
202
202
|
schematicDisabled: boolean;
|
|
203
203
|
pcbDisabled: boolean;
|
|
204
204
|
pcbRoutingDisabled: boolean;
|
|
205
|
+
_featureMspSchematicTraceRouting: boolean;
|
|
205
206
|
/**
|
|
206
207
|
* The RootCircuit name is usually set by the platform, it's not required but
|
|
207
208
|
* if supplied can identify the circuit in certain effects, e.g. it is passed
|
|
@@ -1125,6 +1126,7 @@ declare class Group<Props extends z.ZodType<any, any, any> = typeof groupProps>
|
|
|
1125
1126
|
_runLocalAutorouting(): Promise<void>;
|
|
1126
1127
|
_startAsyncAutorouting(): void;
|
|
1127
1128
|
doInitialPcbTraceRender(): void;
|
|
1129
|
+
doInitialSchematicTraceRender(): void;
|
|
1128
1130
|
updatePcbTraceRender(): void;
|
|
1129
1131
|
_updatePcbTraceRenderFromSimpleRouteJson(): void;
|
|
1130
1132
|
_updatePcbTraceRenderFromPcbTraces(): void;
|
|
@@ -9478,6 +9480,7 @@ declare class NetLabel extends PrimitiveComponent<typeof netLabelProps> {
|
|
|
9478
9480
|
_getNetName(): string;
|
|
9479
9481
|
doInitialCreateNetsFromProps(): void;
|
|
9480
9482
|
doInitialCreateTracesFromNetLabels(): void;
|
|
9483
|
+
doInitialSchematicTraceRender(): void;
|
|
9481
9484
|
}
|
|
9482
9485
|
|
|
9483
9486
|
declare class PlatedHole extends PrimitiveComponent<typeof platedHoleProps> {
|