UNPKG

primereact

Version:

PrimeReact is an open source UI library for React featuring a rich set of 80+ components, a theme designer, various theme alternatives such as Material, Bootstrap, Tailwind, premium templates and professional support. In addition, it integrates with Prime

12 lines (9 loc) 369 B
import * as React from 'react'; export interface TerminalProps extends Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, 'ref'> { welcomeMessage?: string; prompt?: string; children?: React.ReactNode; } export declare class Terminal extends React.Component<TerminalProps, any> { public getElement(): HTMLDivElement; }