@tscircuit/props 0.0.319 → 0.0.321

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
@@ -211,6 +211,8 @@ export interface CadAssemblyProps {
211
211
  * "top" and this is most intuitive.
212
212
  */
213
213
  originalLayer?: LayerRef;
214
+
215
+ children?: any;
214
216
  }
215
217
  ```
216
218
 
@@ -1084,3 +1086,25 @@ export interface PlatformConfig {
1084
1086
  [Source](https://github.com/tscircuit/props/blob/main/lib/platformConfig.ts)
1085
1087
 
1086
1088
  <!-- PLATFORM_CONFIG_END -->
1089
+
1090
+ <!-- PROJECT_CONFIG_START -->
1091
+
1092
+ ## tscircuit Project Configuration
1093
+
1094
+ ### ProjectConfig
1095
+
1096
+ ```ts
1097
+ export interface ProjectConfig
1098
+ extends Pick<
1099
+ PlatformConfig,
1100
+ | "projectName"
1101
+ | "projectBaseUrl"
1102
+ | "version"
1103
+ | "url"
1104
+ | "printBoardInformationToSilkscreen"
1105
+ > {}
1106
+ ```
1107
+
1108
+ [Source](https://github.com/tscircuit/props/blob/main/lib/projectConfig.ts)
1109
+
1110
+ <!-- PROJECT_CONFIG_END -->