Appearance
Function: Terminal()
ts
function Terminal(props: Readonly<{
output: string;
autoScroll?: boolean;
className?: string;
isStreaming?: boolean;
onClear?: () => void;
title?: string;
}> & RefAttributes<HTMLDivElement>): Block;Defined in: src/renderer/blocks/index.ts:2567
Experimental
Terminal — monospace command output viewer with auto-scroll, copy and (optional) clear button.
Parameters
| Parameter | Type |
|---|---|
props | Readonly<{ output: string; autoScroll?: boolean; className?: string; isStreaming?: boolean; onClear?: () => void; title?: string; }> & RefAttributes<HTMLDivElement> |