UNPKG

malwoden

Version:

![alt text](./coverage/badge-lines.svg) ![alt text](./coverage/badge-statements.svg) ![alt text](./coverage/badge-functions.svg) ![alt text](./coverage/badge-branches.svg)

12 lines (11 loc) 412 B
import { BaseTerminal } from "."; import { Table, Vector2 } from "../struct"; import { Glyph } from "./glyph"; import { TerminalConfig } from "./terminal"; export declare class MemoryTerminal extends BaseTerminal { windowToTilePoint(pixel: Vector2): Vector2; delete(): void; glyphs: Table<Glyph>; constructor(config: TerminalConfig); drawGlyph(pos: Vector2, glyph: Glyph): void; }