UNPKG

@skillpet/circuit

Version:

Circuit diagram library — render electrical schematics from JSON, with interactive SVG, themes, and Vue/React components

11 lines (10 loc) 291 B
/** * Operational amplifier — aligned with Python `elements/opamp.py` · `Opamp`. */ import { Element } from "../element.js"; export declare class Opamp extends Element { constructor(userParams?: Record<string, unknown> & { sign?: boolean; leads?: boolean; }); }