UNPKG

reblessed

Version:

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

21 lines 404 B
export = Checkbox; /** * Checkbox */ declare function Checkbox(options: any): Checkbox; declare class Checkbox { /** * Checkbox */ constructor(options: any); text: any; checked: any; value: any; __proto__: any; type: string; render(): any; check(): void; uncheck(): void; toggle(): void; } //# sourceMappingURL=checkbox.d.ts.map