UNPKG

reblessed

Version:

A high-level terminal interface library for node.js.

20 lines 368 B
export = Line; /** * Line */ declare function Line(options: any): Line; declare class Line { /** * Line */ constructor(options: any); ch: any; border: { type: string; __proto__: Line & Node; }; __proto__: any; type: string; } import Node = require("./node"); //# sourceMappingURL=line.d.ts.map