aboutsummaryrefslogtreecommitdiff
path: root/src/index.ts
diff options
context:
space:
mode:
authorUri Shaked2020-11-14 10:32:06 +0200
committerUri Shaked2020-11-14 10:32:06 +0200
commit348c553c8a05657f0476000079738945d1203973 (patch)
tree99034c8d4e1349583f8092af236e89f3a19512fe /src/index.ts
parentdocs: add link to ATtiny85 simulation example (diff)
downloadavr8js-348c553c8a05657f0476000079738945d1203973.tar.gz
avr8js-348c553c8a05657f0476000079738945d1203973.tar.bz2
avr8js-348c553c8a05657f0476000079738945d1203973.zip
fix: AVRTimerConfig interface not exported #65
close #65
Diffstat (limited to 'src/index.ts')
-rw-r--r--src/index.ts8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/index.ts b/src/index.ts
index 0795ab3..d02718a 100644
--- a/src/index.ts
+++ b/src/index.ts
@@ -7,7 +7,13 @@
export { CPU, ICPU, CPUMemoryHook, CPUMemoryHooks } from './cpu/cpu';
export { avrInstruction } from './cpu/instruction';
export { avrInterrupt } from './cpu/interrupt';
-export { AVRTimer, timer0Config, timer1Config, timer2Config } from './peripherals/timer';
+export {
+ AVRTimer,
+ AVRTimerConfig,
+ timer0Config,
+ timer1Config,
+ timer2Config,
+} from './peripherals/timer';
export {
AVRIOPort,
GPIOListener,