@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.
17 lines • 491 B
TypeScript
/**
* @author Tom Neutens <tomneutens@gmail.com>
*/
import { LitElement, CSSResultGroup } from "lit";
declare class MonitorOutput extends LitElement {
static styles?: CSSResultGroup;
lines: Array<string>;
constructor();
protected render(): import("lit-html").TemplateResult<1>;
}
declare global {
interface HTMLElementTagNameMap {
"monitor-output": MonitorOutput;
}
}
export default MonitorOutput;
//# sourceMappingURL=MonitorOutput.d.ts.map