Rezi
    Preparing search index...

    Type Alias LogsConsoleProps

    LogsConsoleProps: Readonly<
        {
            accessibleLabel?: string;
            autoScroll?: boolean;
            entries: readonly LogEntry[];
            expandedEntries?: readonly string[];
            focusable?: boolean;
            focusConfig?: FocusConfig;
            focusedStyle?: TextStyle;
            id: string;
            key?: string;
            levelFilter?: readonly LogLevel[];
            onChange?: (entryId: string, expanded: boolean) => void;
            onPress?: () => void;
            onScroll: (scrollTop: number) => void;
            scrollbarStyle?: TextStyle;
            scrollbarVariant?: "minimal" | "classic" | "modern" | "dots" | "thin";
            scrollTop: number;
            searchQuery?: string;
            showSource?: boolean;
            showTimestamps?: boolean;
            sourceFilter?: readonly string[];
        },
    > & LayoutConstraints

    Props for LogsConsole widget. Streaming tool output and events.