UNPKG

@capgo/cli

Version:
10 lines (9 loc) 196 B
import type { FC } from 'react'; export interface LogEntry { text: string; color?: string; } export declare const CompletedStepsLog: FC<{ entries: LogEntry[]; maxRows: number; }>;