import { EventInterface as Event } from 'microevent.ts'; interface Switch { toggle(state: boolean): this; read(): boolean; stateChange: Event; } export { Switch as default };