primevue-mirror/api-generator/components/terminal.js

23 lines
484 B
JavaScript
Raw Normal View History

const TerminalProps = [
{
2022-09-14 14:26:41 +00:00
name: 'welcomeMessage',
type: 'string',
default: 'null',
description: 'Initial text to display on terminal.'
},
{
2022-09-14 14:26:41 +00:00
name: 'prompt',
type: 'string',
default: 'null',
description: 'Prompt text for each command.'
}
];
module.exports = {
terminal: {
2022-09-14 14:26:41 +00:00
name: 'Terminal',
description: 'Terminal is a text based user interface.',
props: TerminalProps
}
};