Represents a part in a PADS netlist.

interface PADSPart {
    footprint: string;
    refdes: string;
    value?: string;
}

Properties

footprint: string

The footprint name of the part.

"DIP14", "0805", "SOIC16"
refdes: string

The reference designator of the part.

"U1", "R5", "C10"
value?: string

The optional value of the part.

"10k", "0.1uF", "74LS00"