UNPKG

@erikyuzwa/rogue-punk

Version:

a JavaScript library to help you build your roguelike adventures

12 lines (11 loc) 277 B
import { GlyphOptions } from './GlyphOptions'; export declare class Glyph { private char; private fgColor; private bgColor; constructor(options: GlyphOptions); getChar(): string; getBgColor(): string; getFgColor(): string; toString(): string; }