UNPKG

@dodona/papyros

Version:

Scratchpad for multiple programming languages in the browser.

14 lines (13 loc) 551 B
import { Ref } from "lit/directives/ref.js"; import { CSSResult, PropertyValues, TemplateResult } from "lit"; import { PapyrosElement } from "../PapyrosElement"; import "@material/web/textfield/outlined-text-field"; import "@material/web/button/outlined-button"; export declare class InteractiveInput extends PapyrosElement { value: string; inputRef: Ref<HTMLInputElement>; static get styles(): CSSResult; provideInput(): void; protected updated(_changedProperties: PropertyValues): void; protected render(): TemplateResult; }