diff options
| author | Uri Shaked | 2019-12-07 22:18:00 +0200 |
|---|---|---|
| committer | Uri Shaked | 2019-12-07 22:18:00 +0200 |
| commit | 07ddaa7d22f31de5d5c3b9c6d4626c59cf25a244 (patch) | |
| tree | 12a64bfbc4ea18997923f14b44725cb0e118c949 /src/timer.ts | |
| parent | feat: publish both CJS and ESM to npm (diff) | |
| download | avr8js-07ddaa7d22f31de5d5c3b9c6d4626c59cf25a244.tar.gz avr8js-07ddaa7d22f31de5d5c3b9c6d4626c59cf25a244.tar.bz2 avr8js-07ddaa7d22f31de5d5c3b9c6d4626c59cf25a244.zip | |
refactor: tslint → eslint
Diffstat (limited to 'src/timer.ts')
| -rw-r--r-- | src/timer.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/timer.ts b/src/timer.ts index ac82ce8..4a120e7 100644 --- a/src/timer.ts +++ b/src/timer.ts @@ -35,7 +35,7 @@ const OCIEB = 4; type u8 = number; -interface ITimerDividers { +interface TimerDividers { 0: number; 1: number; 2: number; @@ -64,7 +64,7 @@ interface AVRTimerConfig { TCCRC: u8; TIMSK: u8; - dividers: ITimerDividers; + dividers: TimerDividers; } export const timer0Config: AVRTimerConfig = { |
