UNPKG

@dodona/papyros

Version:

Scratchpad for multiple programming languages in the browser.

17 lines (16 loc) 602 B
import { CSSResult, TemplateResult } from "lit"; import { OutputEntry } from "../state/InputOutput"; import { PapyrosElement } from "./PapyrosElement"; import "@material/web/icon/icon"; export declare class Output extends PapyrosElement { static get styles(): CSSResult; private get maxOutputLength(); get outputs(): OutputEntry[]; get overflow(): OutputEntry[]; get showOverflowWarning(): boolean; get downloadOverflowUrl(): string; get renderedOutputs(): TemplateResult[]; private get showTurtleTab(); private renderTabs; protected render(): TemplateResult; }