UNPKG

@tomneutens/serial_monitor

Version:

A web based serial monitor for communicating with serial devices (like Arduino). The library is based on native web components and uses the WebSerial API to communicate with the external device.

24 lines 808 B
/** * @author Tom Neutens <tomneutens@gmail.com> */ import { LitElement, CSSResultGroup } from "lit"; import "./LabeledDropdown"; import { SerialMonitorConfig } from "../state/SerialMonitorConfig"; declare class MonitorMenubar extends LitElement { static styles?: CSSResultGroup; labelText: string; config: SerialMonitorConfig; constructor(); handleViewTypeSelect(event: any): void; handleDataTypeSelect(event: any): void; handleDisplayTypeSelect(event: any): void; handleBaudRateSelect(event: any): void; protected render(): import("lit-html").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { "monitor-menubar": MonitorMenubar; } } export default MonitorMenubar; //# sourceMappingURL=MonitorMenuBar.d.ts.map