Skip to content

Commit 53c9621

Browse files
committed
fix(uno): missing export for ArduinoUnoElement
it was not exported by index.ts
1 parent c119f28 commit 53c9621

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
.cache
2+
.history
23
node_modules
34
dist
45
build

src/index.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1-
export { LEDElement } from './led-element';
2-
export { PushbuttonElement } from './pushbutton-element';
3-
export { ResistorElement } from './resistor-element';
41
export { SevenSegmentElement } from './7segment-element';
2+
export { ArduinoUnoElement } from './arduino-uno-element';
53
export { LCD1602Element } from './lcd1602-element';
64
export { fontA00 } from './lcd1602-font-a00';
75
export { fontA02 } from './lcd1602-font-a02';
6+
export { LEDElement } from './led-element';
87
export { NeoPixelElement } from './neopixel-element';
8+
export { PushbuttonElement } from './pushbutton-element';
9+
export { ResistorElement } from './resistor-element';

0 commit comments

Comments
 (0)