Represents a net in a PADS netlist.

interface PADSNet {
    name: string;
    pins: PADSPin[];
}

Properties

Properties

name: string

The name of the net.

"GND", "VCC", "N00123"
pins: PADSPin[]

An array of pins connected to this net.