react-curse
Version:
A curses-like blazingly fast react renderer
12 lines (11 loc) • 348 B
TypeScript
import { type TextProps } from './Text';
import React from 'react';
interface ViewProps extends TextProps {
focus?: boolean;
height?: number;
scrollbar?: boolean;
vi?: boolean;
children: any;
}
export default function View({ focus, height: _height, scrollbar, vi, children, ...props }: ViewProps): React.JSX.Element;
export {};