UNPKG

asciitorium

Version:

an ASCII ui framework for web + cli

7 lines (6 loc) 144 B
/** * An interface for rendering a 2D array of strings to some output. */ export interface Renderer { render(buffer: string[][]): void; }