UNPKG

@typecad/typecad

Version:

🤖programmatically 💥create 🛰️hardware

10 lines (9 loc) 405 B
import { Schematic } from "./schematic"; /** * Performs electrical rule checks on a given schematic. * Logs errors and warnings based on pin connections. * * @param {Schematic} schematic - The schematic to perform ERC on. * @param {boolean} exit_on_error - Whether to exit the process on errors. Defaults to true. */ export declare function erc(schematic: Schematic, exit_on_error?: boolean): void;