UNPKG

@skillpet/circuit

Version:

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

10 lines (9 loc) 363 B
/** * Embed a completed `Drawing` as a single `Element` — Python `elements/elements.py` · `ElementDrawing`. */ import type { Drawing } from "../drawing.js"; import { Element } from "../element.js"; export declare class ElementDrawing extends Element { readonly drawing: Drawing; constructor(drawing: Drawing, userParams?: Record<string, unknown>); }