circuit-json 0.0.188 → 0.0.190
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 +13 -0
- package/dist/index.d.mts +530 -538
- package/dist/index.mjs +622 -612
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -57,6 +57,7 @@ https://github.com/user-attachments/assets/2f28b7ba-689e-4d80-85b2-5bdef84b41f8
|
|
|
57
57
|
- [SourceSimpleChip](#sourcesimplechip)
|
|
58
58
|
- [SourceSimpleCrystal](#sourcesimplecrystal)
|
|
59
59
|
- [SourceSimpleDiode](#sourcesimplediode)
|
|
60
|
+
- [SourceSimpleFuse](#sourcesimplefuse)
|
|
60
61
|
- [SourceSimpleGround](#sourcesimpleground)
|
|
61
62
|
- [SourceSimpleInductor](#sourcesimpleinductor)
|
|
62
63
|
- [SourceSimpleLed](#sourcesimpleled)
|
|
@@ -357,6 +358,18 @@ interface SourceSimpleDiode extends SourceComponentBase {
|
|
|
357
358
|
}
|
|
358
359
|
```
|
|
359
360
|
|
|
361
|
+
### SourceSimpleFuse
|
|
362
|
+
|
|
363
|
+
[Source](https://github.com/tscircuit/circuit-json/blob/main/src/source/source_simple_fuse.ts)
|
|
364
|
+
|
|
365
|
+
```typescript
|
|
366
|
+
interface SourceSimpleFuse extends SourceComponentBase {
|
|
367
|
+
ftype: "simple_fuse"
|
|
368
|
+
current_rating_amps: number
|
|
369
|
+
voltage_rating_volts: number
|
|
370
|
+
}
|
|
371
|
+
```
|
|
372
|
+
|
|
360
373
|
### SourceSimpleGround
|
|
361
374
|
|
|
362
375
|
[Source](https://github.com/tscircuit/circuit-json/blob/main/src/source/source_simple_ground.ts)
|