lorehub
Version:
Capture and surface the collective wisdom of your codebase
11 lines • 427 B
TypeScript
import React from 'react';
interface AlternativeScreenViewProps {
children: React.ReactNode;
}
/**
* Wrapper component that renders children in alternative screen mode
* This prevents terminal scrollback issues and provides a clean full-screen UI
*/
export declare function AlternativeScreenView({ children }: AlternativeScreenViewProps): React.JSX.Element;
export {};
//# sourceMappingURL=AlternativeScreenView.d.ts.map