webr
Version:
The statistical programming language R compiled into WASM for use in a web browser and node.
11 lines (10 loc) • 342 B
TypeScript
import React from 'react';
import './Terminal.css';
import { TerminalInterface } from '../App';
import { WebR } from '../../webR/webr-main';
import 'xterm/css/xterm.css';
export declare function Terminal({ webR, terminalInterface, }: {
webR: WebR;
terminalInterface: TerminalInterface;
}): React.JSX.Element;
export default Terminal;