import { EventInterface } from 'microevent.ts'; interface SwitchInterface { toggle(state: boolean): void; read(): boolean; peek(): boolean; stateChanged: EventInterface; beforeRead: EventInterface; } export { SwitchInterface as default };