@tscircuit/props 0.0.298 → 0.0.299

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