@tscircuit/core 0.0.520 → 0.0.521
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 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -14875,7 +14875,10 @@ type GenericConnectionsAndSelectorsSel = Record<string, <CMP_FN extends (props:
|
|
|
14875
14875
|
} ? SEL extends Record<string, Record<string, string>> ? {
|
|
14876
14876
|
[K in keyof SEL]: SEL[K] extends Record<string, string> ? SEL[K] : never;
|
|
14877
14877
|
} : never : never : never>;
|
|
14878
|
-
type
|
|
14878
|
+
type TestPointSel = Record<`TP${Nums40}`, {
|
|
14879
|
+
pin1: string;
|
|
14880
|
+
}>;
|
|
14881
|
+
type SelWithoutSubcircuit = NonPolarizedSel & PolarizedSel & TransistorSel & JumperSel & ChipSel & SwSel & NetSel & TestPointSel & GenericConnectionsAndSelectorsSel;
|
|
14879
14882
|
type UnionToIntersection<U> = (U extends any ? (x: U) => void : never) extends (x: infer I) => void ? I : never;
|
|
14880
14883
|
type ChipFn<T extends ChipProps<any>> = (props: T) => any;
|
|
14881
14884
|
type ChipFnSel = <T extends ChipFn<any> | string>(chipFn?: T) => UnionToIntersection<T extends ChipFn<any> ? ChipConnections<T> : T extends string ? {
|
package/dist/index.js
CHANGED
|
@@ -10452,7 +10452,7 @@ import { identity as identity4 } from "transformation-matrix";
|
|
|
10452
10452
|
var package_default = {
|
|
10453
10453
|
name: "@tscircuit/core",
|
|
10454
10454
|
type: "module",
|
|
10455
|
-
version: "0.0.
|
|
10455
|
+
version: "0.0.520",
|
|
10456
10456
|
types: "dist/index.d.ts",
|
|
10457
10457
|
main: "dist/index.js",
|
|
10458
10458
|
module: "dist/index.js",
|