@oclif/multi-stage-output
Version:
Terminal output for oclif commands with multiple stages
12 lines (11 loc) • 450 B
TypeScript
import React from 'react';
export declare function Divider({ dividerChar, dividerColor, padding, terminalWidth, textColor, textPadding, title, width, }: {
readonly title?: string;
readonly width?: number | 'full';
readonly padding?: number;
readonly textColor?: string;
readonly textPadding?: number;
readonly dividerChar?: string;
readonly dividerColor?: string;
readonly terminalWidth?: number;
}): React.ReactNode;