@skillpet/circuit
Version:
Circuit diagram library — render electrical schematics from JSON, with interactive SVG, themes, and Vue/React components
11 lines (10 loc) • 348 B
TypeScript
/**
* Buffer / inverter — aligned with Python `logic/logic.py` · `Buf`, `Not`.
*/
import { Element2Term } from "../element2term.js";
export declare class Buf extends Element2Term {
constructor(userParams?: Record<string, unknown>);
}
export declare class Not extends Element2Term {
constructor(userParams?: Record<string, unknown>);
}