UNPKG

@rawcmd/typewriters

Version:

Collection of typewriters for styling command-line messages for Rawcmd.

7 lines (6 loc) 310 B
import { Command } from '@rawcmd/core'; import { ContentsTypewriterOptions } from './contents'; export interface OptionsTypewriterOptions extends ContentsTypewriterOptions { title?: string; } export declare function optionsTypewriter(options?: OptionsTypewriterOptions): (command: Command<any>) => string;