UNPKG

@typecad/passives

Version:

typeCAD package that includes simple access to common components

8 lines (6 loc) 312 B
import { Component, type ComponentInit } from '@typecad/typecad' export class Testpoint extends Component { constructor(opts: ComponentInit = {}) { super({ ...opts, footprint: opts.footprint || 'TestPoint:TestPoint_Pad_D1.0mm', symbol: opts.symbol || 'Connector:TestPoint', prefix: 'TP' }); } }