@tscircuit/core 0.0.328 → 0.0.329
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 +4 -0
- package/dist/index.js +2547 -2519
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -866,6 +866,8 @@ declare class NormalComponent<ZodProps extends ZodType = any, PortNames extends
|
|
|
866
866
|
additionalAliases?: Record<string, string[]>;
|
|
867
867
|
}): Port[];
|
|
868
868
|
getPortsFromSchematicSymbol(): Port[];
|
|
869
|
+
doInitialCreateNetsFromProps(): void;
|
|
870
|
+
_getNetsFromConnectionsProp(): string[];
|
|
869
871
|
_createNetsFromProps(propsWithConnections: (string | undefined | null)[]): void;
|
|
870
872
|
_getPcbCircuitJsonBounds(): {
|
|
871
873
|
center: {
|
|
@@ -893,6 +895,8 @@ declare class NormalComponent<ZodProps extends ZodType = any, PortNames extends
|
|
|
893
895
|
private _addCachebustToModelUrl;
|
|
894
896
|
doInitialPartsEngineRender(): void;
|
|
895
897
|
updatePartsEngineRender(): void;
|
|
898
|
+
doInitialCreateTracesFromProps(): void;
|
|
899
|
+
_createTracesFromConnectionsProp(): void;
|
|
896
900
|
}
|
|
897
901
|
|
|
898
902
|
type SimplifiedPcbTrace = {
|