@tscircuit/props 0.0.309 → 0.0.311
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 +2 -8
- package/dist/index.d.ts +131 -8
- package/dist/index.js +576 -573
- package/dist/index.js.map +1 -1
- package/lib/common/layout.ts +3 -0
- package/lib/common/symbolProp.ts +6 -0
- package/lib/index.ts +1 -0
- package/lib/platformConfig.ts +12 -16
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1036,16 +1036,10 @@ export interface PlatformConfig {
|
|
|
1036
1036
|
|
|
1037
1037
|
footprintLibraryMap?: Record<
|
|
1038
1038
|
string,
|
|
1039
|
-
| ((
|
|
1040
|
-
path: string,
|
|
1041
|
-
) => Promise<{ footprintCircuitJson: any[]; cadModel?: CadModelProp }>)
|
|
1039
|
+
| ((path: string) => Promise<FootprintLibraryResult>)
|
|
1042
1040
|
| Record<
|
|
1043
1041
|
string,
|
|
1044
|
-
|
|
1045
|
-
| ((path: string) => Promise<{
|
|
1046
|
-
footprintCircuitJson: any[];
|
|
1047
|
-
cadModel?: CadModelProp;
|
|
1048
|
-
}>)
|
|
1042
|
+
any[] | ((path: string) => Promise<FootprintLibraryResult>)
|
|
1049
1043
|
>
|
|
1050
1044
|
>;
|
|
1051
1045
|
}
|