@tscircuit/props 0.0.299 → 0.0.301
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/README.md +8 -2
- package/dist/index.d.ts +16860 -7453
- package/dist/index.js +23 -1
- package/dist/index.js.map +1 -1
- package/lib/common/cadModel.ts +27 -0
- package/lib/platformConfig.ts +17 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1031,10 +1031,16 @@ export interface PlatformConfig {
|
|
|
1031
1031
|
|
|
1032
1032
|
footprintLibraryMap?: Record<
|
|
1033
1033
|
string,
|
|
1034
|
-
| ((
|
|
1034
|
+
| ((
|
|
1035
|
+
path: string,
|
|
1036
|
+
) => Promise<{ footprintCircuitJson: any[]; cadModel?: CadModelProp }>)
|
|
1035
1037
|
| Record<
|
|
1036
1038
|
string,
|
|
1037
|
-
|
|
1039
|
+
| any[]
|
|
1040
|
+
| ((path: string) => Promise<{
|
|
1041
|
+
footprintCircuitJson: any[];
|
|
1042
|
+
cadModel?: CadModelProp;
|
|
1043
|
+
}>)
|
|
1038
1044
|
>
|
|
1039
1045
|
>;
|
|
1040
1046
|
}
|