@rawcmd/typewriters
Version:
Collection of typewriters for styling command-line messages for Rawcmd.
7 lines (6 loc) • 313 B
TypeScript
import { Command } from '@rawcmd/core';
import { ContentsTypewriterOptions } from './contents';
export interface CommandsTypewriterOptions extends ContentsTypewriterOptions {
title?: string;
}
export declare function commandsTypewriter(options?: CommandsTypewriterOptions): (command: Command<any>) => string;