From 69589b07e47219b7673dc9919fb6fa3fcd0c4d54 Mon Sep 17 00:00:00 2001 From: Uri Shaked Date: Sat, 14 Feb 2026 19:25:24 +0200 Subject: style: organize imports Also remove unused eslint-disable directives --- src/index.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/index.ts') 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, -- cgit v1.2.3