aboutsummaryrefslogtreecommitdiff
path: root/src/index.ts
diff options
context:
space:
mode:
authorUri Shaked2026-02-14 19:25:24 +0200
committerUri Shaked2026-02-14 19:25:24 +0200
commit69589b07e47219b7673dc9919fb6fa3fcd0c4d54 (patch)
tree50d34ab39b382c50695682ddd3ea5bfc7043ea8e /src/index.ts
parentchore: update all devDependencies (diff)
downloadavr8js-69589b07e47219b7673dc9919fb6fa3fcd0c4d54.tar.gz
avr8js-69589b07e47219b7673dc9919fb6fa3fcd0c4d54.tar.bz2
avr8js-69589b07e47219b7673dc9919fb6fa3fcd0c4d54.zip
style: organize imports
Also remove unused eslint-disable directives
Diffstat (limited to 'src/index.ts')
-rw-r--r--src/index.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/index.ts b/src/index.ts
index 51ca120..9f8d27a 100644
--- a/src/index.ts
+++ b/src/index.ts
@@ -6,16 +6,16 @@ export type { CPUMemoryHook, CPUMemoryHooks } from './cpu/cpu';
export { avrInstruction } from './cpu/instruction';
export { avrInterrupt } from './cpu/interrupt';
export {
- adcConfig,
ADCMuxInputType,
ADCReference,
- atmega328Channels,
AVRADC,
+ adcConfig,
+ atmega328Channels,
} from './peripherals/adc';
export type { ADCConfig, ADCMuxConfiguration, ADCMuxInput } from './peripherals/adc';
export { AVRClock, clockConfig } from './peripherals/clock';
export type { AVRClockConfig } from './peripherals/clock';
-export { AVREEPROM, eepromConfig, EEPROMMemoryBackend } from './peripherals/eeprom';
+export { AVREEPROM, EEPROMMemoryBackend, eepromConfig } from './peripherals/eeprom';
export type { AVREEPROMConfig, EEPROMBackend } from './peripherals/eeprom';
export {
AVRIOPort,