@tscircuit/props 0.0.402 → 0.0.404
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 +1 -0
- package/dist/index.d.ts +243 -3
- package/dist/index.js +40 -0
- package/dist/index.js.map +1 -1
- package/lib/common/footprintProp.ts +4 -1
- package/lib/components/platedhole.ts +30 -0
- package/lib/generated/footprinter-autocomplete.ts +32 -0
- package/lib/index.ts +1 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1625,6 +1625,7 @@ export interface PlatformConfig {
|
|
|
1625
1625
|
footprintFileParserMap?: Record<string, FootprintFileParserEntry>;
|
|
1626
1626
|
|
|
1627
1627
|
resolveProjectStaticFileImportUrl?: (path: string) => Promise<string>;
|
|
1628
|
+
nodeModulesResolver?: (modulePath: string) => Promise<string | null>;
|
|
1628
1629
|
}
|
|
1629
1630
|
```
|
|
1630
1631
|
|