Skip to content

Commit

Permalink
v0.0.120
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Dec 20, 2024
1 parent e206e68 commit 86b70f5
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ and is the primary way that Circuit JSON is defined and maintained.
- [SourceSimplePowerSource](#sourcesimplepowersource)
- [SourceSimplePushButton](#sourcesimplepushbutton)
- [SourceSimpleResistor](#sourcesimpleresistor)
- [SourceSimpleResonator](#sourcesimpleresonator)
- [SourceTrace](#sourcetrace)
- [PCB Elements](#pcb-elements)
- [PcbBoard](#pcbboard)
Expand Down Expand Up @@ -314,6 +315,20 @@ interface SourceSimpleResistor extends SourceComponentBase {
}
```

### SourceSimpleResonator

Defines a simple resonator component

```typescript
/** Defines a simple resonator component */
interface SourceSimpleResonator extends SourceComponentBase {
ftype: "simple_resonator"
load_capacitance: number
equivalent_series_resistance?: number
frequency: number
}
```

### SourceTrace

```typescript
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "circuit-json",
"version": "0.0.119",
"version": "0.0.120",
"description": "Definitions for the tscircuit intermediary JSON format",
"main": "dist/index.mjs",
"files": [
Expand Down

0 comments on commit 86b70f5

Please sign in to comment.