primevue-mirror/components/terminal/Terminal.d.ts

40 lines
809 B
TypeScript
Raw Normal View History

2022-09-06 12:03:37 +00:00
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;
}
2022-09-14 11:26:01 +00:00
export interface TerminalSlots {}
2022-09-06 12:03:37 +00:00
2022-09-14 11:26:01 +00:00
export declare type TerminalEmits = {};
2022-09-06 12:03:37 +00:00
2022-09-14 11:26:01 +00:00
declare class Terminal extends ClassComponent<TerminalProps, TerminalSlots, TerminalEmits> {}
2022-09-06 12:03:37 +00:00
declare module '@vue/runtime-core' {
interface GlobalComponents {
2022-09-14 11:26:01 +00:00
Terminal: GlobalComponentConstructor<Terminal>;
2022-09-06 12:03:37 +00:00
}
}
/**
*
* Terminal is a text based user interface.
*
* Helper API:
*
* - TerminalService
*
* Demos:
*
2022-09-14 11:26:01 +00:00
* - [Terminal](https://www.primefaces.org/primevue/terminal)
2022-09-06 12:03:37 +00:00
*
*/
export default Terminal;