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