@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 CHANGED
@@ -1031,10 +1031,16 @@ export interface PlatformConfig {
1031
1031
 
1032
1032
  footprintLibraryMap?: Record<
1033
1033
  string,
1034
- | ((path: string) => Promise<{ footprintCircuitJson: any[] }>)
1034
+ | ((
1035
+ path: string,
1036
+ ) => Promise<{ footprintCircuitJson: any[]; cadModel?: CadModelProp }>)
1035
1037
  | Record<
1036
1038
  string,
1037
- any[] | ((path: string) => Promise<{ footprintCircuitJson: any[] }>)
1039
+ | any[]
1040
+ | ((path: string) => Promise<{
1041
+ footprintCircuitJson: any[];
1042
+ cadModel?: CadModelProp;
1043
+ }>)
1038
1044
  >
1039
1045
  >;
1040
1046
  }