Fixed #1836 - For Terminal
parent
94195f8c34
commit
f30e8bcafb
|
@ -1,10 +1,41 @@
|
|||
interface TerminalProps {
|
||||
welcomeMessage?: string;
|
||||
prompt?: string;
|
||||
import { ClassComponent, GlobalComponentConstructor } from '../ts-helpers';
|
||||
|
||||
export interface TerminalProps {
|
||||
/**
|
||||
* Initial text to display on terminal.
|
||||
*/
|
||||
welcomeMessage?: string | undefined;
|
||||
/**
|
||||
* Prompt text for each command.
|
||||
*/
|
||||
prompt?: string | undefined;
|
||||
}
|
||||
|
||||
declare class Terminal {
|
||||
$props: TerminalProps;
|
||||
export interface TerminalSlots {
|
||||
}
|
||||
|
||||
export declare type TerminalEmits = {
|
||||
}
|
||||
|
||||
declare class Terminal extends ClassComponent<TerminalProps, TerminalSlots, TerminalEmits> { }
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
Terminal: GlobalComponentConstructor<Terminal>
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* Terminal is a text based user interface.
|
||||
*
|
||||
* Helper API:
|
||||
*
|
||||
* - TerminalService
|
||||
*
|
||||
* Demos:
|
||||
*
|
||||
* - [Terminal](https://www.primefaces.org/primevue/showcase/#/terminal)
|
||||
*
|
||||
*/
|
||||
export default Terminal;
|
||||
|
|
Loading…
Reference in New Issue