UNPKG

@dodona/papyros

Version:

Scratchpad for multiple programming languages in the browser.

14 lines (13 loc) 465 B
import { CSSResult, TemplateResult } from "lit"; import "./input/BatchInput"; import "./input/InteractiveInput"; import { PapyrosElement } from "./PapyrosElement"; import "@material/web/switch/switch"; import { InputMode } from "../state/InputOutput"; export declare class Input extends PapyrosElement { static get styles(): CSSResult; get mode(): InputMode; get otherMode(): InputMode; toggleMode(): void; protected render(): TemplateResult; }