UNPKG

reblessed

Version:

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

30 lines 618 B
export = Form; /** * Form */ declare function Form(options: any): Form; declare class Form { /** * Form */ constructor(options: any); __proto__: any; type: string; _refresh(): void; _children: any[]; _visible(): boolean; next(): any; _selected: any; focusChild(elem: any): void; previous(): any; focusNext(): void; focusPrevious(): void; resetSelected(): void; focusFirst(): void; focusLast(): void; submit(): {}; submission: {}; cancel(): void; reset(): void; } //# sourceMappingURL=form.d.ts.map