ink
Version:
React for CLI
22 lines (21 loc) • 967 B
TypeScript
import React, { type ReactNode } from 'react';
import { type CursorPosition } from '../log-update.js';
type Props = {
readonly children: ReactNode;
readonly stdin: NodeJS.ReadStream;
readonly stdout: NodeJS.WriteStream;
readonly stderr: NodeJS.WriteStream;
readonly writeToStdout: (data: string) => void;
readonly writeToStderr: (data: string) => void;
readonly exitOnCtrlC: boolean;
readonly onExit: (errorOrResult?: unknown) => void;
readonly onWaitUntilRenderFlush: () => Promise<void>;
readonly setCursorPosition: (position: CursorPosition | undefined) => void;
readonly interactive: boolean;
readonly renderThrottleMs: number;
};
declare function App({ children, stdin, stdout, stderr, writeToStdout, writeToStderr, exitOnCtrlC, onExit, onWaitUntilRenderFlush, setCursorPosition, interactive, renderThrottleMs, }: Props): React.ReactNode;
declare namespace App {
var displayName: string;
}
export default App;