jscad-electronics 0.0.81 → 0.0.82

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -139,6 +139,14 @@ declare const Tssop: ({ pinCount, leadLength, leadWidth, pitch, bodyWidth, }: {
139
139
  bodyWidth: number;
140
140
  }) => react_jsx_runtime.JSX.Element;
141
141
 
142
+ declare const MSOP: ({ pinCount, padContactLength, leadWidth, pitch, bodyWidth, }: {
143
+ pinCount: number;
144
+ pitch?: number;
145
+ leadWidth?: number;
146
+ padContactLength?: number;
147
+ bodyWidth?: number;
148
+ }) => react_jsx_runtime.JSX.Element;
149
+
142
150
  declare const VSSOP: ({ pinCount, pitch, leadWidth, leadLength, bodyWidth, bodyLength, }: {
143
151
  pinCount: 8 | 10;
144
152
  pitch?: number;
@@ -256,4 +264,4 @@ declare const MS012: ({ pinCount, padContactLength, leadWidth, pitch, }: {
256
264
  padContactLength?: number;
257
265
  }) => react_jsx_runtime.JSX.Element;
258
266
 
259
- export { A01005, A0201, A0402, A0603, A0805, A1206, A1210, A2010, A2512, BGA, ChipBody, type ChipBodyProps, DFN, ExtrudedPads, FootprintPad, FootprintPlatedHole, Footprinter3d, HC49, type HC49Props, LQFP, MS012, PinRow, QFN, QFP, SMA, SMB, SMC, SMF, SOD123, SOD123F, SOD123FL, SOD523, SOD923, SOT223, SOT233P, SOT323, SOT563, SOT723, SmdChipLead, type SmdChipLeadProps, TQFP, Tssop, VSSOP };
267
+ export { A01005, A0201, A0402, A0603, A0805, A1206, A1210, A2010, A2512, BGA, ChipBody, type ChipBodyProps, DFN, ExtrudedPads, FootprintPad, FootprintPlatedHole, Footprinter3d, HC49, type HC49Props, LQFP, MS012, MSOP, PinRow, QFN, QFP, SMA, SMB, SMC, SMF, SOD123, SOD123F, SOD123FL, SOD523, SOD923, SOT223, SOT233P, SOT323, SOT563, SOT723, SmdChipLead, type SmdChipLeadProps, TQFP, Tssop, VSSOP };